C/Macro Preprocessor/Preprocessor LINE
Output compiling info after #line preprocessor
#include <stdio.h>
int main(void)
{
#line 100 "myprog.c"
printf("Compiling %s, line: %d, on %s, at %s",
__FILE__, __LINE__, __DATE__,
__TIME__);
return 0;
}