I will start the first program.
hello world Print in HTML language
HTML (Hypertext Markup Language)
Output:-
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:-
hello world Print in Java language
- /*
- * The HelloWorld Java program
- * prints "Hello World!" on the computer screen
- */
- class HelloWorld {
- public static void main(String[] args) {
- System.out.println("Hello, World!");
- }
- }
Output:-
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!!






1 Comments
Nice bro
ReplyDelete