|
|
|
Exercise"To err is human; to forgive, divine."
- Alexander Pope
|
| 1. |
What will be the output of the program?
#include<stdio.h>
int main()
{
enum color{red, green, blue};
typedef enum color mycolor;
mycolor m = red;
printf("%d", m);
return 0;
}
|
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss.
|
| 2. |
What will be the output of the program?
#include<stdio.h>
int main()
{
typedef int arr[5];
arr iarr = {1, 2, 3, 4, 5};
int i;
for(i=0; i<4; i++)
printf("%d,", iarr[i]);
return 0;
}
|
| A. |
1, 2, 3, 4 | | B. |
1, 2, 3, 4, 5 | | C. |
No output | | D. |
Error: Cannot use typedef with an array |
Answer: Option C
Explanation:
No answer description available for this question. Let us discuss.
|
| 3. |
What will be the output of the program?
#include<stdio.h>
int main()
{
typedef int LONG;
LONG a=4;
LONG b=68;
float c=0;
c=b;
b+=a;
printf("%d,", b);
printf("%f\n", c);
return 0;
}
|
| A. |
72, 68.000000 | B. |
72.000000, 68 | | C. |
68.000000, 72.000000 | D. |
68, 72.000000 |
Answer: Option E
Explanation:
No answer description available for this question. Let us discuss.
|
| 4. |
What will be the output of the program?
#include<stdio.h>
int main()
{
typedef float f;
static f *fptr;
float fval = 90;
fptr = &fval;
printf("%f\n", *fptr);
return 0;
}
|
Answer: Option A
Explanation:
No answer description available for this question. Let us discuss.
|
| 5. |
What will be the output of the program?
#include<stdio.h>
typedef struct error {int warning, err, exception;} ERROR;
int main()
{
ERROR e;
e.err=1;
printf("%d\n", e.err);
return 0;
}
|
Answer: Option D
Explanation:
No answer description available for this question. Let us discuss.
|
|
|