Q:

C program to print the square of array elements

0

C program to print the square of array elements

All Answers

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

Here, we will create an array of integers and print the square of each element of the array on the console screen.

Program:

The source code to print the square of array elements is given below. The given program is compiled and executed using GCC compile on UBUNTU 18.04 OS successfully.

// C program to print the square of array elements

#include <stdio.h>

int main()
{
    int arr[5] = { 1, 2, 3, 4, 5 };
    int i = 0;

    printf("Array elements: \n");
    for (i = 0; i < 5; i++)
        printf("%d ", arr[i]);

    printf("\nSquare of array elements: \n");
    for (i = 0; i < 5; i++)
        printf("%d ", arr[i] * arr[i]);

    printf("\n");

    return 0;
}

Output:

Array elements: 
1 2 3 4 5 
Square of array elements: 
1 4 9 16 25

Explanation:

Here, we created an array arr with 5 elements and a counter variable i to traverse the array. Then we printed the elements of array and square of elements of the array on the console screen.

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

total answers (1)

One Dimensional Array Programs / Examples in C programming language

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C program to find two elements whose sum is closes... >>
<< C program to find the difference between the large...