Computer Science, asked by divu1230, 7 months ago

Write array declarations for the scores of 100 studends

Answers

Answered by pavithranatarajan855
1

Answer:

#include<stdio.h>

int main(){

int a[100];

for(i=0;i<100;i++)

{

scanf("%d",&a[i]);

}

}

Explanation:

Similar questions