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