words per minute
4
AmeerHamza5820
00:00
Speed
#include <stdio.h>
#include <conio.h>
#define LIMIT 6
int main()
{
int subNumber[6];
int counter;
for (counter = 1; counter <= LIMIT; counter++){
printf("Please enter your subject no %d Marks\n",counter);
scanf("%d",&subNumber[counter]);
}
for (counter = 1; counter <= LIMIT; counter++){
printf("the aggrigate of your subject %d is %d\n",counter,subNumber[counter/100*30]);
}
getch();
return 0;
}