Category: C

C’s predefined macros

A list of C’s predefined macros (__FILE__, __LINE__, __STDC__…) with description and an example of how to use them. __FILE__ – a string that holds the path/name of the compiled file;__LINE__ – an integer that holds the number of the current line number;__DATE__ – a string that holds the current system date;__TIME__ – a string that holds the current […]

Back To Top