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