1.

What will be the output of the program?

#include<stdio.h> int main()
{ const char *s = ""; char str[] = "Hello"; s = str; while(*s) printf("%c", *s++); return 0;
}

A. Error
B. H
C. Hello
D. Hel
Answer» D. Hel


Discussion

No Comment Found