What is the output of the following problem ?

			  		

Loading

โœช Choose the correct option.

What is the output of the following problem ?


#include
int main()
{
char *c;
c = "Hello";
printf("%s
", c);
return 0;
}

A. Hello
B. H
C. ello
D. Compilation Error