Computer Science, asked by kkeerthu943, 1 month ago

c program to store n numbers in array​

Answers

Answered by prince65469
0

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);

Answered by Xxitzking01xX
20
  • #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