Answers for "Array declaration by specifying the size in C++"

C++
0

Array declaration by specifying the size in C++

#include <iostream>
int main() {
    
// Array declaration by specifying size
int array1[10];
int a = 10;
int array2[a];

}
Posted by: Guest on May-05-2022

Browse Popular Code Answers by Language