Tech Study

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

Introduction

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

#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

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

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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more