ExamVeda
Login
Home
71
Which among the following is the odd one out?
Discuss
Answer & Solution
Answer: Option D
No explanation is given for this question. Let's Discuss on Board
72
The syntax of the scanf() is scanf("control string ", arg1,arg2,arg3,....,argn); the prototype of control string is
Discuss
Answer & Solution
Answer: Option A
No explanation is given for this question. Let's Discuss on Board
73
Output justification such as decimal point, numerical sign, trailing zeros or octal are specified.
Discuss
Answer & Solution
Answer: Option B
No explanation is given for this question. Let's Discuss on Board
74
function fabs defined math.h header file takes the argument of type integer.
Discuss
Answer & Solution
Answer: Option B
No explanation is given for this question. Let's Discuss on Board
75
What will be the output of the following C code considering user typed jkl?
#include <stdio.h>
int main()
{
    char n[20];
    fgets(n, 19, stdin);
    ungetc(n[0], stdin);
    printf("%s\n", n);
    return 0;
}
Discuss
Answer & Solution
Answer: Option A
No explanation is given for this question. Let's Discuss on Board
76
Which of the following is NOT a delimiter for an input in scanf?
Discuss
Answer & Solution
Answer: Option D
No explanation is given for this question. Let's Discuss on Board
77
Which is true about isupper(c), where c is an int that can be represented as an unsigned?
char or EOF.isupper(c) returns
Discuss
Answer & Solution
Answer: Option D
No explanation is given for this question. Let's Discuss on Board
78
What will be the output of the following C code?
#include <stdio.h>
#include <math.h>
void main()
{
    int k = fabs(-87);
    printf("%d\n", k);
}
Discuss
Answer & Solution
Answer: Option B
No explanation is given for this question. Let's Discuss on Board
79
gets() function checks overflow run.
Discuss
Answer & Solution
Answer: Option B
No explanation is given for this question. Let's Discuss on Board
80
In linux, apart from including math header file, the program is successfully executed by which of the following?
Discuss
Answer & Solution
Answer: Option D
No explanation is given for this question. Let's Discuss on Board