Skip to main content

Hello World

Program to print "Hello World" using C++.

  1. #include <iostream>
  2. using namespace std;

  3. int main()
  4. {
  5.           cout<<"Hello World";
  6.           return 0;
  7. }

Here is the link for online execution:
https://ide.geeksforgeeks.org/0pcL5B3xy5.

Program to print the "Hello World" using C.

  1. #include <stdio.h>

  2. int main()
  3. {
  4.          printf("Hello World");
  5.          return 0;
  6. }

Here is the link for online execution:
https://ide.geeksforgeeks.org/kA1mwOavW9 .

Program to print "Hello World" using Java.

  1. import java.io.*;

  2. class HelloWorld
  3. {
  4.        public static void main(String args[])
  5.       {
  6.               System.out.println("Hello World");
  7.        }
  8. }

Here is the link for online execution:
https://ide.geeksforgeeks.org/hay0o092zV .