A
Q. What will be the output of the code below?
Code:
int main() {
char str[] = "Hello";
printf("%c", *str);
return 0;
}
char str[] = "Hello";
printf("%c", *str);
return 0;
}
- Correct Answer - Option(B)
- Views: 16
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.