1.

What will be the output of the following C code?
#include <stdio.h>
struct car
{
int car_no = 12;
char car_name[25];
};
void main()
{
struct car c;
c.car_no = 10;
printf("Audi");
}

A. 10
B. Compilation Error
C. Audi
D. Garbage value
E. None of these
Answer» C. Audi


Discussion

No Comment Found