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");

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation