write it in C language plz(not C++)
Write the main function of a program that reads in a sequence of integers and then prints them in reverse order. The program should first ask the user to input the size of the sequence, and then the numbers one by one. Note that you should not make any assumption what size is. Below is a sample run of the program. Console program output Please input the size of the sequence: 3 Please input the numbers: 8 5 The numbers in reverse order: 5 8 1 Press any key to continue... 1
write it in C language plz(not C++)
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am