Top 3 Programming Languages 💻

preview_player
Показать описание

python, C, C++, Java, JavaScript and Other Cheetsheets [++]:

►Learn in One Video[++]:

►Complete course [playlist]:

Follow Me On Social Media
Comment "#HarryBhai" if you read this 😉😉
Рекомендации по теме
Комментарии
Автор

Javascript be like: jalwa hai hamara 😎

hindivines
Автор

If a person starts his journey with javascript he will never dare to code again😂

RandomSerialKiller
Автор

1. Python : Easy, Less Errors
2. C/C++ : Teaches memory management and how actually machine works at low-level
3. Javascript : Can be used for almost anything

techandgamesyt
Автор

We should start with c because it provides basic instructions of nearly all the programming languages

jatinjasrotia
Автор

Anyone who started with C++ will master any other language in short time

whis
Автор

THE LAST LINE "PROGRAMMING SIKHNE KA KOI ORDER NAHI HAI " JUST CLEARED MY Biggest DOUBT ❤️

_SANTANU_PAL
Автор

// in C++ if function returns a value and we use reference variable as argument then by using reference operator '&' in definition.
// we can change the value of returning variable.
// This explanation is just for myself.
#include <iostream>
using namespace std;
int & swap(int &a){
return a;
}
int main() {
int x;
cout<<"Enter x :-\n";
cin>>x;
cout<<"Before x = "<<x<<endl;
swap(x) = 1000;
cout<<"After x = "<<x<<endl;
}

atifmalik
Автор

him : "python main bahut kam error milte hain"
meanwhile beginners and veterans in bg : 🤣🤣🤣🤣🤣🤣🤣🤣🤣

taranveersingh
Автор

I complete your python tutorials, flask tutorials and big data tutorial because of you yesterday i found my first client in flask. Thank you so much sir and currently i stated your django tutorial playlist ❤️🙏🏻

programmerlovers
Автор

Jini :- make 3 wishes
Me :- python, javascript, C++
😊😊

Ntigen
Автор

Suggestion for beginners- you must learn c and c++ first to begin your coding journey from saurabh sir(mysirg) he is the best teacher in the world....for building fundamental concepts....after this you can learn any language easily in 2 days only....

ankursinger
Автор

I love your python course
currently I am studying with the help of your python full course
really it's awesome
thanks 👍

MyzzGT
Автор

// in C++ we can use call by reference in different way just by passing reference variable as formal argument.both shares same memory sapce bcz it is reference(just another name of varible)so if we change formal parameter then actual arguments will also be changed
// in cpp we can make reference variable by just int & a = x;
// in this a is reference variable of x.
#include <iostream>
using namespace std;
void swap(int &a, int&b){
int temp = a;
a = b;
b = temp;
}
int main() {
int x, y;
cout<<"Enter x:-\n";
cin>>x;
cout<<"Enter y:-\n";
cin>>y;
cout<<"before x = "<<x<<" y = "<<y<<endl;
swap(x, y);
cout<<"After x = "<<x<<" y = "<<y<<endl;
}

atifmalik
Автор

Let me tell you something

Let program =["phyton", "C, C++", "Javascript"];
For(let i=0;i<program.length; i++){
Let programName= program.length[0];
Console.log(programName);
}

Results --

Phyton
C, C++
Javascript

codingwithshiku
Автор

A beginner should start with statically-typed languages. Statically-typed language gives you clear information in different aspects of programming than dynamically-typed language.

thelostman
Автор

Harry bhai please aap python ki new playlist la sakte he new features ke sath javascript vali playlist khatam hone ke bad❤️❤️

irfansaiyed
Автор

do not learn python as your first programming language because it is a very high level language meaning it has very high level of abstraction which mean u learn absolutely nothing about the basics. i suggest u start from c then go to c++ or java after that u can go for python for data science or ML/AI. Trust me bruh!

merkasin
Автор

To all juniors only start with c once u learn c in a good way believe me all other language just have different syntax

Aparichigft
Автор

Sir I agree with you but in my opinion first c > c++ > Java > javascript > python.

hello_world
Автор

if someone ask me I prefer Javascript
Why:
* You can build any type of application or website except games
* Community

sabeerbikba