We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C++
- Introduction
- Arrays Introduction
- Discussions
Arrays Introduction
Arrays Introduction
Sort by
recency
|
1330 Discussions
|
Please Login in order to post a comment
simple code
int main() {
}
string reverse
int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
}
include
include
include
include
include
using namespace std;
int main() { /* Enter your code here. Read input from STDIN. Print output to STDOUT */
int size; cin>>size; int arr[size]; for(int i=0;i>arr[i]; } for(int i=size-1;i>=0;i--){ cout<
include
using namespace std; int main(){ int n; cin>>n; int arr[n]; for (int i=0;i>a; arr[i]=a; } for (int j=n-1;j>=0;j--){ cout<
Easy and Understable Code: