Computer Science, asked by anaghadevadas0084, 4 months ago

c program to read and display 1d array​

Answers

Answered by rintukumar45884
1

Answer:

#include <stdio.h>

int main() {

int a[1000],i,n;

printf("Enter size of array: "); scanf("%d",&n);

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

Similar questions