Q:

Write C program to count total number of negative elements in array

0

Write C program to count total number of negative elements in array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h>

int main()
{
    int arr[100]; //Declaring size of an array as 100
    int i, num, count=0;

    //Reads size and elements of array

    printf("Enter size of the array : ");
    scanf("%d", &num);

    printf("Enter elements in array : ");
    for(i=0; i<num; i++)
    {
        scanf("%d", &arr[i]);
    }

    //Counts total number of negative elements
    for(i=0; i<num; i++)
    {
        if(arr[i]<0)
        {
            count++; //couting negative elements
        }
    }
    printf("\nTotal number of negative elements = %d", count);

    return 0;
}

Result:

Enter elements in array : -3

-2

5

6

9

Total number of negative elements = 2

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a C program to read and print elements of ar... >>
<< Write a C program to print all negative elements i...