Q241
Open questionIf setjmp() macro returns directly from the macro invocation, it . . . . . . . .
Select an option to see the answer and solution.
Practice every MCQ with options. Use Show answers when you want the correct option and solution.
250
Questions
13/13
Page
Pick an option on a question to see the right answer and solution.
Q241
Open questionSelect an option to see the answer and solution.
Q242
Open question#include <stddef.h>
int main(void)
{
int num[15];
int *p1=&num['a'], *p2=&num['A'];
ptrdiff_t d = p1-p2;
printf("%d", d);
}Select an option to see the answer and solution.
Q243
Open questionint main ()
{
printf("starting of program\n");
printf("program exits\n");
exit(0);
printf("program ends\n");
return(0);
}Select an option to see the answer and solution.
Q244
Open questionSelect an option to see the answer and solution.
Q245
Open questionSelect an option to see the answer and solution.
Q246
Open questiondouble x, deg, rad;
x = 1.0;
val = 180.0 / 3.14;
deg = atan (x) * val;
printf("The arc tangent of %lf is %lf degrees", x, deg);Select an option to see the answer and solution.
Q247
Open question#include <assert.h>
#include <stdio.h>
void main()
{
int n=11;
char str[50]="program";
assert(n >= 10);
printf(" output: %d\n", n);
assert(str != NULL);
printf("output: %s\n", str);
}Select an option to see the answer and solution.
Q248
Open questionSelect an option to see the answer and solution.
Q249
Open questionSelect an option to see the answer and solution.
Q250
Open questionSelect an option to see the answer and solution.