All articles
c

A program to declare a single dimensional array

Share this article

Share on LinkedIn Share on X (formerly Twitter)

C Programming Language 050

The following code shows how to write a program to declare a single dimensional array. Read values into the array and print them.

Program

#include <stdio.h>
 
void main() {
    int a[4], i;
    printf("Enter the values:\n");
 
    for ( i = 0; i < 4; i++)
    {
        scanf("%d", &a[i]);
    }
 
    printf("The values are:\n");
    for ( i = 0; i < 4; i++)
    {
        printf("%d\n", a[i]);
    }
 
 
    printf("\n");
}

Result

Enter the values:
1 5 3 4
The values are:
1
5
3
4

Comments