?
What will be the output of the following C code?
What will be the output of the following C code?
#include <stdio.h>
int main()
{
char *a[1] = {"hello"};
printf("%s", a[0]);
return 0;
}
#include <stdio.h>
int main()
{
char *a[1] = {"hello"};
printf("%s", a[0]);
return 0;
}
Join the Discussion
Login to post a comment or share your explanation.
Login