What will be the output of the following program?
		
					

Loading

โœช Choose the correct option.

What will be the output of the following program?


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

A. ello
B. Hello
C. Compilation Error
D. Segmentation fault

Leave a Comment