C Language MCQ - English
How will you print \n on the screen?
Answer : D
View More Related Question
1) How will you print \n on the screen?
2) Which of the following function is more appropriate for reading in a multi-word string?
3) What is the output of this C code?
#include <stdio.h>
int main()
{
char *str = "hello, world\n";
printf("%d", strlen(str));
}
4) What is the output of this C code?
#include <stdio.h>
int main()
{
char *str = "hello, world";
char *str1 = "hello, world";
if (strcmp(str, str1))
printf("equal");
else
printf("unequal");
}
5) What will be the output of the program ? #include<stdio.h>
int main()
{
printf(2+"C Programming MCQ on Study 2 Online\n");
return 0;
}
View Answer