Answers for "c program for array"

1

c program for array

// Array declaration by specifying size 
int arr1[10]; 
  
// With recent C/C++ versions, we can also 
// declare an array of user specified size 
int n = 10; 
int arr2[n];
Posted by: Guest on March-02-2021

Browse Popular Code Answers by Language