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
14 changes: 14 additions & 0 deletions Contributors/vivek tangudu/hello_in_c++.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Header file for input output functions
#include<iostream>

using namespace std;

// main function -
// where the execution of program begins
int main()
{
// prints hello world
cout<<"Hello World";

return 0;
}
6 changes: 6 additions & 0 deletions Contributors/vivek tangudu/hello_in_c.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
5 changes: 5 additions & 0 deletions Contributors/vivek tangudu/hello_in_java.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class Simple{
public static void main(String args[]){
System.out.println("Hello World");
}
}
1 change: 1 addition & 0 deletions Contributors/vivek tangudu/hello_in_javascript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Hello World');
1 change: 1 addition & 0 deletions Contributors/vivek tangudu/hello_in_python.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("hello world")