Home Programs Write a program to Print Hello World – Technic Dude

Write a program to Print Hello World – Technic Dude

0

Write a program to Print Hello World by technic dude in these all language , C language , java language and python language

Program to print “Hello World!” in C Language

#include <stdio.h>
int main() {
   // printf() displays the string inside quotation
   printf("Hello World!");
   return 0;
}

Output

Hello World!

Program to print “Hello World!” in JAVA Language

HelloWorld.java

public class HelloWorld {

    public static void main(String[] args) {
       
        System.out.println("Hello World!");
    }

}

Output

Hello World!

Program to print “Hello World!” in PYTHON Language

Open your Python editor (IDLE is fine), and enter the following this code:

print("Hello World!")

Output

Hello World!

List of Top Interview Programs

print Fibonacci Series in C – SOLUTION

prime number Program – SOLUTION

Check Palindrome number program – SOLUTION

 Armstrong number program – SOLUTION

Factorial of a number Program – SOLUTION

How to Reverse String in Java – SOLUTION

Programs for printing pyramid patterns – SOLUTION

Check Leap Year or Not – SOLUTION

program to Binary search – SOLUTION

Implement traverse a Binary tree in Preorder in Java using Recursion – SOLUTION

find GCD of two numbers program – SOLUTION

Write a program to find Merge Sort Program in C – SOLUTION

READ MORE

NO COMMENTS

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Exit mobile version