A
Q. What will this code output?
Code:
#include <stdio.h>
int main() {
char str[] = "Hello";
printf("%c", *str);
return 0;
}
int main() {
char str[] = "Hello";
printf("%c", *str);
return 0;
}
- Correct Answer - Option(A)
- Views: 5
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.