Consider the declaration
static char hello [] = "hello";
The output of printf ("%s\n", hello);
will not be the same as that of
1
puts ("hello");
2
puts (hello);
3
printf ("%s\n", "hello");
4
puts ("hello\n");
Consider the declaration
static char hello [] = "hello";
The output of printf ("%s\n", hello);
will not be the same as that of