Hello World in 10 Languages (Python, Java, C/C++, Swift and More)

preview_player
Показать описание
A "Hello, World!" is a simple program that outputs Hello, World! on the screen. It is the first program for most people.

Since it's a very simple program, it's often used to introduce a new programming language to a newbie.

In this video, we will write the hello world program in 10 different programming languages. This will help you understand how the syntax of different programming languages differs from each other.

Find Programiz elsewhere:

#programiz #programizunscripted #helloworld #programminglanguages #learnprogramming
Рекомендации по теме
Комментарии
Автор

#Python
print("Hello World")
Sir, I like watching all your videos and I even use your online compiler 😀. Would love to see C language tutorials from your side.

aarushpandey
Автор

#Batch
@echo off
echo Hello World
pause

Batch is my favorite language, simple and easy (relatively), its only drawback is that it doesn't handle decimals.

PS__VR
Автор

My first hello world program was in C++. But, I'd prefer someone to go for Python or JS. JS only if u r familiar with markup langs like html, css ;) Happy coding !

yashaparik
Автор

#include<stdio.h>

int main()
{ printf("Hello world!");
return 0;
}

AdityaVerma-wcte
Автор

print("Hello World")

My first language was python, very simple!

ManaBytez
Автор

my first hello world program was in python

macarioinmenzo
Автор

also mine was python which was very easy to learn

Karthikskanda
Автор

My first hello world was in c++ and second in python 😋

abhishek
Автор

I started with Java some years ago so I don't remember the "hello world" program(I was 13). So I ll say python print("hello world ")

krasg
Автор

#askprogramiz which is the best ide to use ? I am confused in pycharm and vs code !

sahilpimpari
Автор

First language = C++


#include <iostream>
using namespace std;
int main(){
cout<<"Hello world"<<endl;
return 0;
}

sureshkumar-llcb
Автор

Sir is in programiz is support all language plz reply sir

poojarangrej
Автор

#Java

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

quirasudip
Автор

#Python
print("Hello, World!!")

iits_ak
Автор

Program Hello;
begin
Writeln('Hello World!');
end.

thunderbyte
Автор

BRO PLZZZZ HINDI MEIN BHI COURSE BANAO

vivkkush
Автор

Python
Print("Hello, World")

pedrobarao
Автор

Print("Hello world")
Python

infinityfactopia
Автор

Console.WriteLine("Hello World");

mrbacon