Math, asked by manassbp4216, 1 year ago

Examples of transverning arrays in data structure

Answers

Answered by RaviTiwari
1
According to my skill answer is
Let LA is a Linear Array (unordered) with N elements.

//Write a Program which perform traversing operation. #include <stdio.h> void main() { int LA[] = {2,4,6,8,9}; int i, n = 5; printf("The array elements are:\n"); for(i = 0; i < n; i++) { printf("LA[%d] = %d \n", i, LA[i]); } }
Similar questions