#include <stdio.h> int main() { int a=30,b=20; printf( "This code is on line %d, in file %s\n", __LINE__, __FILE__ ); #line 10 printf( "This code is on line %d, in file %s\n", __LINE__, __FILE__ ); #line 20 "hello.c" printf( "This code is on line %d, in file %s\n", __LINE__, __FILE__ ); printf( "This code is on line %d, in file %s\n", __LINE__, __FILE__ ); }