Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added helloworld code in cpp #11148

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -1634,6 +1634,11 @@ Noida
- Bio: Software developer and musician
- GitHub: [Moisés Ñañez](https://github.com/moisesnandres)

#### Name: [MokshaNirugutti](https://github.com/mokshanirugutti)
- Place: India
- Bio: Software Developer
- GitHub: [mokshanirugutti](https://github.com/mokshanirugutti)

#### Name: [Mon](https://github.com/mon555)
- Place: Bangkok, Thailand
- Bio: Interactive Developer
Expand Down
27 changes: 27 additions & 0 deletions profiles/mokshanirugutti.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Moksha Nirugutti

### Location

India

### Academics



### Interests

- Anime
- Coding
- Books

### Development

- Full stack developer and competitive coder.

### Projects

-

### Profile Link

[mokshanirugutti](https://github.com/mokshanirugutti)
12 changes: 12 additions & 0 deletions scripts/helloWorld_cpp.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// LANGUAGE: C++
// AUTHOR: Moksha
// GITHUB: https://github.com/mokshanirugutti

#include <iostream>
using namespace std;

int main()
{
cout << "Hello, World!";
return 0;
}