Array.cpp

#include <iostream> using namespace std; int main() { int x; cin>>x; const int y=x; int arr[y]; for(int i=0;i<y;++i) cin>>arr[i]; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.