Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Day0-HelloWorld/C++/main_kunal.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#include <iostream>

using namespace std;

int main() {
string input_string;
getline(cin, input_string);
cout << "Hello, World." << endl;
cout << input_string;
return 0;
}
15 changes: 15 additions & 0 deletions Day7-Arrays/C++/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#include <bits/stdc++.h>

using namespace std;

int main() {
int N;
cin>>N;
int arr[N];
for(int i=0;i<N;i++)
cin>>arr[i];
for(int i=N-1;i>=0;i--)
cout<<arr[i]<<" ";

return 0;
}
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: jekyll-theme-midnight