PracticeDev/test/test.c

10 lines
140 B
C
Raw Permalink Normal View History

2022-12-20 17:31:11 +08:00
#include<stdio.h>
#include<string.h>
int main()
{
char b1[] = {"Hello World!"};
char *b = b1;
printf("%s\n",b);
return 0;
}