โช Choose the correct option.
What will be output of the following “C” code?
#include
int main()
{
char *s = "Hello";
printf("%s",(s+1));
return 0;
}
#include
int main()
{
char *s = "Hello";
printf("%s",(s+1));
return 0;
}