C/Macro Preprocessor/Preprocessor LINE
Версия от 14:20, 25 мая 2010; (обсуждение)
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;
}