settingsdarshit

  1. redhat

    Very Basic C++ question

    I am new to programming in C++, just now I tried to create an array with 'n' index'es where n is an input no. This is what i coded: #include<iostream> using namespace std; int main() { int n=10,m; cin >> n >> m; int stor[n]; return(0); } But, VC++ 6.0, returns, the following...
Top