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
9 changes: 9 additions & 0 deletions C++/helloworld-shreemishra.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#include <iostream.h>

using namespace std;

int main(){

std::cout << "Hello world";
return 0;
}
4 changes: 3 additions & 1 deletion C++/readme.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
This is a simple Hello world program using C++!
### Hello world program using C++

### By Shree Mishra
6 changes: 6 additions & 0 deletions C/helloworld-shreemishra.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {

printf("Hello World");
return 0;
}
1 change: 1 addition & 0 deletions Python/Readme.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
### Hello World in Python
## By Shree Mishra
1 change: 1 addition & 0 deletions Python/helloworld-shreemishra.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hello World")