C Language MCQ - English
Which of the following function is more appropriate for reading in a multi-word
Home | Discussion ForumWhich of the following function is more appropriate for reading in a multi-word string?
Answer : C
View More Related Question
1) What is the output of this C code?
#include <stdio.h>
#include <string.h>
int main()
{
char *str = "hello, world";
char str1[9];
strncpy(str1, str, 9);
printf("%s %d", str1, strlen(str1));
}
2) What is the output of this C code?
#include <stdio.h>
int main()
{
char *str = "hello, world\n";
printf("%d", strlen(str));
}
3) 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
4) The library function used to find the last occurrence of a character in a string is
5) Which of the following function is more appropriate for reading in a multi-word string?