16 lines
107 B
C
16 lines
107 B
C
|
|
|
|
|
|
#include "stdio.h"
|
|
|
|
|
|
|
|
int for_hello(void){
|
|
printf("i am in \"%s\"\n",__FILE__);
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|