A funny visualization of C++ vs Python | Funny Shorts | Meme

preview_player
Показать описание
A funny visualization of C++ vs Python | Funny Shorts | Meme

#C++ #python #softwaredeveloper

Watch our related videos:

Programmers vs Network Engineers vs System Engineers

Which Information Technology (IT) role would you want to pursue?

SUPPORT OUR SOCIAL MEDIA
========================================
========================================

#technology #developers #itcareer #informationtechnology #techjobs #C++ #python #itjobs #programmer #programming #shortsviral #meme
Рекомендации по теме
Комментарии
Автор

yes but python runs slower than my greatgrandmother in a pool of honey while cpp runs very fast one of the fastest modern languages

guwilmy
Автор

C++ will shit the cotton candy faster than python

proman
Автор

Now time execution of a large for loop in python 😂

Ce_Lazca
Автор

#include <iostream>
#define HelloWorld printf

int main() {
std::string print;
print = "Hello World";

HelloWorld(print);
return 0;
}

psych
Автор

i think python lose the velocity of coding in execution time lmao, c++ high performance language

reversiveark
Автор

Python is faster to write but C++ is faster to execute

azharuddin
Автор

Here is the corrected syntax. Of course there are many’s ways to print hello world in C++

#include <iostream>

int main() {
std::cout << “Hello world\n”;
return 0;
}

Also I know I put an \n not std::endl. The reason for that is because the stream will get flushed upon termination anyway

purpletom_yt
Автор

#includeinstream> is not a known directive, did you mean #include <iostream>

you don't need line 2 at all and it ends with ; not : just replace cout with std::cout

the main function has no closing curly brackets

end does not exist, did you mean endl; which you also dont need

how did you fuck up a copy paste?

hackerhacker-mswy
Автор

And the python takes much longer to run

xxfreedomxx
Автор

#include<iostream>
Using namespace std;
Int main(){

Cout<<"Hello world"<<endl;

Return 0;
}
Thank me later

in
Автор

2nd line is useless and instead of using cout you can use printf

ZRD