Home » C Programming » Strings

What will be the output of the program? #include #include int main() { static char s[] = "Hello!"; printf("%d\n", *(s+strlen(s))); return 0; }

Correct Answer: 0

← Previous Question Next Question→

More Questions from Strings

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion