Computer Science, asked by akashgupta802212, 1 year ago

(i) int i; int marks[20]; explain

Answers

Answered by Anonymous
0
hey mate

here is your answer

int i means declaration of a variable of int data type named i.it can store only one non-fractional value.

however,int marks[20] means declaration of an array of int data type named marks.it can store twenty non-fractional values.

#be brainly
Answered by Anonymous
0

marks[20] is the array of integer with size 20.

Similar questions