I have been trying to improve my understanding of C/C++ but looking at includes for functions, such as printf
, which I use a lot. However I am running across a syntax which I am not familiar with, nor am I able to find.
What does the ':
' mean? For example:
unsigned int is_long_double:1;
It seems that it would be some type of precursor to the boolean expression.