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

Correct Answer: 0

More Questions from Strings

Discussion & Comments

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