I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.
#include <iostream>
#define MAX_SIZE 100 //Maximum size of the array
using namespace std;
int main()
{
int arr[MAX_SIZE]; //Declares an array size
int i, num;
//Enter size of array
cout<<"Enter size of the array: ";
cin>>num;
//Reading elements of array
cout<<"Enter elements in array: ";
for(i=0; i<num; i++)
{
cin>>arr[i];
}
cout<<"All negative elements in array are:";
for(i=0; i<num; i++)
{
//Printing negative elements
if(arr[i] < 0)
{
cout<<arr[i];
}
}
return 0;
}
I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.
Result:
Enter size of the array: 5
Enter elements in array: 10
-20
-30
40
50
All negative elements in array are:-20-30
need an explanation for this answer? contact us directly to get an explanation for this answer