โช Choose the correct option.
What is the output of the following problem ?
#include
int main()
{
char *c;
c = "Hello";
printf("%s
", c);
return 0;
}
#include
int main()
{
char *c;
c = "Hello";
printf("%s
", c);
return 0;
}
#include
int main()
{
char *c;
c = "Hello";
printf("%s
", c);
return 0;
}