Files
c_progarm/other/for_hello.c

16 lines
107 B
C
Raw Normal View History

2023-11-22 18:02:53 +08:00
#include "stdio.h"
int for_hello(void){
printf("i am in \"%s\"\n",__FILE__);
return 0;
}