Computer Science, asked by beenauthamanuthaman, 9 months ago

6. Identify the errors in the following code segment
Struct
int adm_no;
char name[20];
float marks=100;
};​

Answers

Answered by NAVA98
0

Answer:

Struct

int adm_no;

char name[20];

float marks=10.0;

}

Explanation:

for float the the number should be point decimal value so 10.0

Similar questions