Tech Study

Write a C program to print all negative elements in an array

Introduction

Write a C program to print all negative elements in an array.

#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;
}

Result

Write a C program to print all negative elements in an array
Write a C program to print all negative elements in an array

TaggedWrite a C program to print all negative elements in an array

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more