Answer to Question #212120 in C for Stebu

Question #212120

Declare an array to store up to 10 integer percentage values


1
Expert's answer
2021-06-30T03:15:41-0400


#include <stdio.h>
//Declare an array to store up to 10 integer percentage values
int main()
{
    int arr[10];
    printf("Enter 10 numbers:\n");
    for(int i=0;i<10;i++){
        scanf("%d",&arr[i]);
    }
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS