study/C_C++/sources/c_and_pointer/test1_1.c

8 lines
92 B
C
Raw Normal View History

2020-02-23 14:23:40 +00:00
#include <stdio.h>
int main()
{
printf("hello word %s\n", "zeekling");
return 0;
}