Write a C program to print all negative elements in an array.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #include <stdio.h> #define MAX_SIZE 100 //Maximum size of the array int main() { int arr[MAX_SIZE]; //Declares an array size int i, num; //Enter size of array printf("Enter size of the array: "); scanf("%d", &num); //Reading elements of array printf("Enter elements in array: "); for(i=0; i<num; i++) { scanf("%d", &arr[i]); } printf("\nAll negative elements in array are: "); for(i=0; i<num; i++) { //Printing negative elements if(arr[i] < 0) { printf("%d\t", arr[i]); } } return 0; } |
22 June 2019 2418 Written By: Rohit Mhatre
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap