Question #30600

Define an array of 15 elements.

Expert's answer

//include standard library
#include <iostream>
//it's main function
int main (){
// define int elements array the size of 15
int array[15];
//end of the program
return 0;
}
LATEST TUTORIALS
APPROVED BY CLIENTS