Question
#include <stdio.h>
#include <string.h>
int main()
{
char line[3];
fgets(line, 3, stdin);
printf("%d\n", line[2]);
return 0;
}
a.
Compilation error
b.
Undefined behaviour
c.
0
d.
10(ascii value of newline character)
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this C code if 2 character is typed by the user?
Similar Questions
Discover Related MCQs
Q. fputs adds newline character
View solution
Q. puts function adds newline character
View solution
Q. gets function checks overflow run
View solution
Q. puts does the following when it writes to stdout
View solution
Q. What is the size of array “line” used in fgets(line, maxline, *fp) function?
View solution
Q. The following function
int fputs(char *line, FILE *fp)
returns EOF when:
View solution
Q. Which function has a return type as char pointer?
View solution
Q. Which of the following is the right declaration for fgets inside the library?
View solution
Q. Which is true about fputs.fputs returns?
View solution
Q. gets and puts operate on
View solution
Q. gets does the following when it reads from stdin
View solution
Q. Strcat function adds null character
View solution
Q. Which of the following library function is not case-sensitive?
View solution
Q. The following expression can be substituted for
if (isalpha(c) && isdigit(c))
View solution
Q. Which of the following will return a non-zero value when checked with isspace(c)?
View solution
Q. Which is true about isaplpha(c), where c is an int that can be represented as an unsigned char or EOF.isalpha(c) returns?
View solution
Q. Which is true about isupper(c), where c is an int that can be represented as an unsigned char or EOF.isupper(c) returns?
View solution
Q. Which is true about isalnum(c), where c is an int that can be represented as an unsigned char or EOF.isalnum(c) returns?
View solution
Q. Which types of input are accepted in toupper(c)?
View solution
Q. What is the difference in the ASCII value of capital and non-capital of the same letter is?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!