1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
char *s = "hello, Interveiw, Mania n";
printf("%d", strlen(s));

}

A. hello
B. Interveiw, Mania
C. 24
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found