91. What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
char c = 't';
printf("%d\n", isspace(c));
}
#include <stdio.h>
#include <ctype.h>
int main()
{
char c = 't';
printf("%d\n", isspace(c));
}92. stderr is similar to?
93. stderr is similar to?
94. What error is generated on placing an address operator with a variable in the printf statement?
95. What will be the output of the following C code?
#include <stdio.h>
int main()
{
int i = 10, j = 2;
printf("%d\n", printf("%d %d ", i, j));
}
#include <stdio.h>
int main()
{
int i = 10, j = 2;
printf("%d\n", printf("%d %d ", i, j));
}96. What will sin(x) returns?
97. what is the function of fputs()?
98. What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
int i = 9;
if (isdigit(i))
printf("digit\n");
else
printf("not digit\n");
return 0;
}
#include <stdio.h>
#include <ctype.h>
int main()
{
int i = 9;
if (isdigit(i))
printf("digit\n");
else
printf("not digit\n");
return 0;
}99. rand() and srand() functions are used . . . . . . . .
100. . . . . . . . . is used to define the type and the interpretation of the value of the corresponding argument.
Read More Section(File Input Output)
Each Section contains maximum 100 MCQs question on File Input Output. To get more questions visit other sections.
