Hello friends my name is Ajay. If you are learning any coding language then I hope this program helps you completely. Getting Hello world printed is a basic program. If you learn coding from anyone, then you are the first one to teach you to print Hello World, but you can print your name or nothing, not only Hello World.


I will start the first program.

hello world Print in HTML language

HTML (Hypertext Markup Language) is that the code that's wont to structure an internet page and its content

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hello World</title>
</head>
<body>
     <h1>Hello World</h1> 
</body>
</html>

Output:-



More Read

hello world Print in C language

The C programing language may be a programming language that was developed to try to to system programming for the OS UNIX and is an important programing language. ... The language itself has only a few keywords, and most things are done using libraries, which are collections of code for them to be reused.

   #include <stdio.h>
   #include <conio.h>
      main()
      {

               printf("Hello world");

               return0;

     }

                                                 

The first program is complete. Then we now compile the program (F9) and Run the program (F10) & get output.

Output:-   


More Read

hello world Print in Java language

Java may be a powerful general-purpose programing language. it's wont to develop desktop and mobile applications, big processing, embedded systems, and so on. Originally Developed by sun microsystem which was initialed by James gesling and released in 1995.

  1. /*
  1. * The HelloWorld Java program
  1. * prints "Hello World!" on the computer screen
  1. */
  1. class HelloWorld {
  1.   public static void main(String[] args) {
  1.    System.out.println("Hello, World!");
  1.   }
  1. }

Output:-



More Read

hello world Print in Python language

Python is a simple and easy-to-understand language that feels like reading simple English. Python Developed by Guido van Rossum on Feb 20, 1991.

in this language only simple type print hello world

# Hello World Print


print("Hello World")

Output:-





Thanks For Reading !! If this post is helpful for you then don't forget to Bookmark it!!