Which error are you likely to get when you run the following program?
main()
{
struct emp
{
char name[20];
float sal;
};
struct emp e[10];
int i;
for ( i = 0 ; i 5
1120 5b5cc7dde4d2b419777515e8
Q: Which error are you likely to get when you run the following program? main() { struct emp { char name[20]; float sal; }; struct emp e[10]; int i; for ( i = 0 ; i
- Show Answer
- Workspace
- Discuss