Files
c_progarm/other/for_hello.c
2023-12-02 11:52:15 +08:00

16 lines
107 B
C

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