What is the output of the following program?
#include<stdio.h>
int main()
struct emp
char name[20];
int age
float sal
};
struct emp e = {"Tiger");
printf("%d, %f", e age, e. sal);
return 0;
Select one:
1)Error
2)1, 1,000000
3)random values
4)0, 0.000000
Answers
Answered by
1
Answer:
8
Thank you...........
Similar questions