1.

What will be the output of the program in Turbo C? #include int main() { char str[10] = "India"; str[6] = "BIX"; printf("%s\n", str); return 0; }

A. India BIX
B. BIX
C. India
D. Error
Answer» E.


Discussion

No Comment Found