study/C_C++/sources/c_traps_and_pitfalls/test1/test.c

17 lines
415 B
C

#include <stdio.h>
#include <stdlib.h>
/*
* === FUNCTION ======================================================================
* Name: main
* Description:
* =====================================================================================
*/
int main ()
{
char hello[] = {'h','e','l','l','o',' ','w','o','r','l','d','\n',0};
printf("hello world\n");
printf(hello);
return EXIT_SUCCESS;
}