Q. What will be the output of this code?
Code:#include <stdio.h>
int main() {
char str[] = "C Language";
printf("%s", str);
return 0;
}
β
Correct Answer: (C)
C Language
Explanation: '%s' prints the entire string stored in 'str'.