Files
c_progarm/for_hello.c
2023-11-22 18:02:53 +08:00

16 lines
107 B
C

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