Tech Study

Write a C program to read and print elements of array

Introduction

Write a C program to read and print elements of array

#include <stdio.h>
#define MAX_SIZE 1000 //Maximum size of the array

int main()
{
    int arr[MAX_SIZE]; //Declares sizr of array
    int i, num;
    printf("Enter size of array: ");
    scanf("%d", &num);

    printf("Enter %d elements in the array : ", num);

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

    //Prints all elements of array
    printf("\nElements in array are: ");
    for(i=0; i<num; i++)
    {
        printf("%d, ", arr[i]);
    }

    return 0;
}

Result

Write a C program to read and print elements of array
Write a C program to read and print elements of array

TaggedWrite a C program to read and print elements of 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