Ask your own question, for FREE!
Computer Science 24 Online
OpenStudy (anonymous):

Write a program that reads marks store them in an array, then the program will print the array in reverse order

OpenStudy (anonymous):

//In C programming language #include <stdio.h> int main() { int n; scanf("%d", &n); int marks[n]; int i; //Reading the data for(i=0; i<n; i++) { scanf("%d", &marks[i]); } //Printing the data. If I do my counting in a reverse fashion, I essentially am traversing the array in a reverse order for(i=n-1; i>=0; i--) { printf("%d ", marks[i]); } return 0; }

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!