SINGLE DIMENSION ARRAYS
13 programming challenges to help you master the fundamentals of C LANGUAGE.
1
Enter an array from user and display all the value ?
2
Enter an array from user and print the array in reverse order ?
3
Enter an array from user and copy the array into second array ?
4
Enter an array from user and copy it into another array in reverse order ?
5
Enter an array from user and print the number which is even ?
6
Enter an array from user and print the number which is positive ?
7
Enter an array from user and square all the values of array ?
8
Enter 5 values of array from user and print odd number of array ?
9
Enter 5 values of array from user and add all values ?
10
Enter 5 values of array from user, enter a value from user and search this value in array, if value is found then print “found” or not then print “not found”?
11
Enter five values of array and sort in ascending order ?
12
Find maximum values of array ?
13