Rust gang here | V Rust Rust Rust Rust Rust Rust Rust Rust Rust Rust Rust Rust Rust
@BunrithViwatthanak3 ай бұрын
Rust vs C++ who will win!
@mila-d5b3 ай бұрын
@@BunrithViwatthanak c++ fuck rust
@berymain3 ай бұрын
ericparker verified now.
@AbsurdImprobability3 ай бұрын
< is the "less than" sign, and > is the "greater than" sign. Nice, easy to follow content, this will be helpful for beginners to get started! Thanks for making this!
@theamazingeditor79612 ай бұрын
yes
@epixerty2 ай бұрын
no, thats the name of the operator. those characters are called angle brackets
@Fritted2 ай бұрын
@@epixertylook on unicode sheets they’re known by the names "Less-Than Sign" and "Greater-Than Sign"
@Tear-ud2gi2 ай бұрын
1 > 2
@kanuki03 ай бұрын
3:36 lil correction for the skids: cout is actually not a function, but a stream object. the "
@ebolaman_3 ай бұрын
thanks 🙏
@Hnxzxvr2 ай бұрын
@@ebolaman_ok now actually let me out your basement
@tsunami8702 ай бұрын
@@kanuki0 no it stores data in the stream buffer and when a newline is encountered it flushes immediately, so cout
@Kripo-handle3 ай бұрын
bro wtf i js started with C++, that was well timed
@nol4nator3 ай бұрын
Literally the same here
@IgnBesd3 ай бұрын
same xd
@adalwolf94193 ай бұрын
He’s always watching
@prodbyzuha3 ай бұрын
same
@Kripo-handle3 ай бұрын
@@adalwolf9419 thats genuinely concerning 💀💔
@chicabomb59332 ай бұрын
visual studio is amazing, when i was in highscool i used it a lot instead of codeblockd (ew), nowdays i use vscode just because is more lightweight (yes, you need to install the complier separately but for space it's worth it ). for beginers it's good to use a full IDE like vs studio but i wanted to mention this other way if there are people that maybe don't have much space in their pcs
@Spiderfffun2 ай бұрын
nah i'd vim
@Frosty_Q-T2 ай бұрын
I have been using C++ since back when I was a kid on PlayStation Home I don’t use it for much video game editing anymore but I now use this exploring different types of tools looking for exploits etc
@savvyfn3503 ай бұрын
guys an excuse to stop doing my homework! ebola man uploadeed!
@samiplays63652 ай бұрын
Oh my god!! Finally a full course for Skids like me!!! from my favorite hacking tutorial trainer!! YESSSS
@AlexTsaava2 ай бұрын
there are also for loops (example: for(int a = 0; a < 10; a++) { std::cout
@AlexTsaava2 ай бұрын
Oh that not all with for loops… another example: char[] letters = “abcdefghijklmnopqrstuvwxyz”; //makes an array of characters, each character is a different element for(letter : letters) { std::cout
@Cyther22 ай бұрын
loved this video, this one was good to go through, game me some basics that i can now actually remember to use later(im new to c++) thx for this video you should make a pt2
@infowizard_3 ай бұрын
a tutorial about using WINAPI with C++ would be pretty cool
Just started to learn c++. I bought a course on udemy but its outdated and he uses CodeLite. I only get compiler errors so Im gonna switch to bro code and visual studio. Good luck everyone!
@destroyerr15582 ай бұрын
Bro you are not a skid you teach very well.
@mr.atomictitan9938Ай бұрын
Although I hate the bloat that comes with visual studio, I think its good for beginners. The earlier you learn C/C++ the better as this is a monolithic language and will help you in the long run. Obviously, I am ignoring cobol and assembly because that is for crazy people lol
@ebolaman_Ай бұрын
assembly 😍
@solidracer794728 күн бұрын
to reduce system calls (which are expensive) the stdout stream uses a buffer. when you write something, it goes in the buffer and is NOT written in the terminal. std::endl **flushes** the buffer, meaning the buffer is erased and the content is written in the terminal. I generally use C but anyways stdout (cout): mostly line by line buffered, but sometimes has a buffer size. if its the latter one, the interactiveness will decrease and will not give instant output. thus, this should not be used for debugging where crashes appear. stderr (cerr): is unbuffered (data is written instantly) and is mostly used for warnings, errors and diagnostics in code. it is good practice to use these 2 streams for their purposes respectively. wanted to give useless info idk maybe it might be helpful to some
@iluvwntr3 ай бұрын
haha thats so well timed bro, i am going thru “apathy” in learning cpp and i have cybersec project at school wtf haha, keep cpp tuts up!
@BottleCapProgrammer2 ай бұрын
I WANT PART 2 EBOLA!!!! man,,... part 2 plz?
@TheHeadphonesAreNeeded2 ай бұрын
fr
@TheGamer2024Short3 ай бұрын
It stands for character output 4:40
@thebluegamerdrummer2363Ай бұрын
🤓skid that thinks hes a real programmer:
@OkriM-03 ай бұрын
PLEASE DO MORE OF THESE I BEG YOU
@MikhaKey3 ай бұрын
Dude I just found my dad’s old C++ book 💀 Really perfect timing
@bleachtybwfull3 ай бұрын
Most of the code in the book won’t work in Visual Studio..
@MikhaKey3 ай бұрын
@@bleachtybwfull man. First of all, it worked. The second thing I want to tell is that C++ absolutely did not change in 20 years
@developer22 ай бұрын
@@bleachtybwfull yes it will? 💀
@MikhaKey8 күн бұрын
@@bleachtybwfull cpp didn’t change at all
@xxxxxx-h6sАй бұрын
a++ is not equal to a += 1 or a = a + 1 beacause in the first example a is incremented after the line of code (postfix increment) and in the second example it is incremented rigth there in your example however this doesnt effect the outcome / compiled mashine code here an example where it would matter: int a = 0; std::cout
@AInfinity_3 ай бұрын
Thank you father
@ihzc3 ай бұрын
??
@MOMO3MK3 ай бұрын
wtf ??!
@straw2983 ай бұрын
@@MOMO3MKprobably a person new to english?
@LandonViteri3 ай бұрын
@@straw298 i think hes just joking idk
@Meletion13 ай бұрын
No! You call him daddy!
@Mrrahim_tech2 ай бұрын
I like your videos❤ ebola keep going
@oliverdive97592 ай бұрын
❤️ thanks , we love you too
@Mem-d5c2 ай бұрын
Yo man, love the content, do you know if this would work on Mac? Thanks
@xglock2 ай бұрын
I personally use CLion but you can also use any other IDE, for example XCode which is directly from Apple
@Mem-d5c2 ай бұрын
@@xglock thanks bro
@Funnyguygamer702 ай бұрын
i learned a litte from this video thx ebole man god bless you
@daniels_guard3 ай бұрын
Your videos are always helpful
@youqdo2 ай бұрын
Dude my teacher just gave me this language what a time
@SpideyJuice_9993 ай бұрын
Ebola man dropped 🔥🗣️🗣️
@smc5293 ай бұрын
Best video so far keep up the good work and, make more programming tutorials 😉
@ashsg7_3 ай бұрын
hi can someone help me? basically when i open visual studio and i open/create any project, vs freezes and i cant do anything like i cant code nor do anything else. thank you.
@silethoughts3 ай бұрын
reinstall it
@BeebJeep3 ай бұрын
Turn it off and back on again? Nah Fr reinstall or it might be your device ur working not trying to be mean but it mights not have a powerful CPU to code with. If you have coded before then it’s prob the app
@runo67853 ай бұрын
npc asking in a yt comment section
@alek0023 ай бұрын
Skid detected
@erty-hc6jb3 ай бұрын
use vscode instead 🤑🤑🤑🤑
@Voice_My2 ай бұрын
Rewrite it in Assembly
@NiksanZy3 ай бұрын
Ain't no way I literally just started studying these C#, JavaScript and C++ from school
@RaGhav3633 ай бұрын
I will be joining your paid community soon I need some exclusive knowledge for educational purposes only 😅
@ebolaman_3 ай бұрын
cya there!
@steviejp15053 ай бұрын
Man, now we can understand all of the "tools" we have
@Sam1093k3 ай бұрын
crazy how i know all of this thing you say but still take 4 at the exam 🙏
@JacobReshetnikov2 ай бұрын
fun fact if you where using Xcode you have to put a return 1 at a end of a fuction
@dopamin69423 ай бұрын
I wish you would also teach about installing C++ libraries
@Nwexy3 ай бұрын
bro really came without skid video 😎 quitted. goated.
@arshimeth3 ай бұрын
0:13 the smartest and the most "EDUCATİONAL"
@KeikoChann2 ай бұрын
i have been in programming world for 3 months and i already learned many languages such as Batch,java,html,css,js,lua.and now i will study C++
@Mous-12-31Ай бұрын
It's okay to explore, it's normal and awesomee. but when you found your programming language that feels liks home, better stick with it!
@KeikoChannАй бұрын
@Mous-12-31 aight
@alelion35392 ай бұрын
There has to be reasons as to why no one uses registry cleaner programs to clean their computers. They either are scams themselves or are both redundant and detrimental overall. Regardless, I enjoy testing these cleaners on my virtual machines to see what kinds of problems arise from them.
@raresdene6852 ай бұрын
Im the biggest skid ! Nice one ebola man
@会供価3 ай бұрын
thank you mr ebola man
@jesusv1nce9293 ай бұрын
How do you install and include new libraries
@gtaghelp3 ай бұрын
keep it up, i love ur vids bro
@bbb_chaos2 ай бұрын
Free Community link is not working pls.. help me guys to get access
@sys_key322 ай бұрын
I believe in C supremacy
@s6ombie2 ай бұрын
yay i am ready to no longer be a skid thank you !
@FluckTerrainium2 ай бұрын
*ebola man uploads* me: *BOIS HE UPLOADED!*
@Manny732113 ай бұрын
cout means carry-out
@insadeyt3 ай бұрын
Oh I thought it was console output
@tsunami8702 ай бұрын
Wrong, it's character output
@R4tje2 ай бұрын
hi im here from the mult1 t00l video, when i open it on windows 11 it closes automatically why does it that?
@HaroonPCs3 ай бұрын
Bro can you make a series on this. and btw the discord and free server links dont work
@kingrich-cm6dx3 ай бұрын
bro was like 95% c++ for skids
@ummmmmf9712Күн бұрын
Some people didnt have any project to begin with. For me i created my first ESP cheat using C++ dll injection. So dont just watch and try make something.
@samiplays63652 ай бұрын
Can you do any private classes for learning C++?? Can you teach me yourself plssss. is there any way u can take private classes??
@FNXGame2 ай бұрын
Make moree c++ tutorials bro. I am a skid
@aarizfly2 ай бұрын
vs 2022?
@MINECANGI3 ай бұрын
nice tutorial!! i love c/c++! btw > is the right shift operator
@Hnxzxvr3 ай бұрын
The > is a “changer” operation idk what it’s called but I call it a changer cuz it changes data
@aidnvfx3 ай бұрын
@@Hnxzxvr Flow insertion operator
@tsunami8702 ай бұрын
It's just operator overload in c++, i can make the + operator turn on your refrigerator light
@wuyanimabote59482 ай бұрын
Ebola, please do c# next
@AmarMustafi-y4jАй бұрын
how can you use VS when you can download Code::Blocks
@kistuu._42522 ай бұрын
bro i thought you are 18-19 what compliment are you talking about xD
@flopism4933 ай бұрын
LOVE FROM PAKISTAN BRUH !
@ByteWise02 ай бұрын
How old are u I'm from Pakistan too
@flopism4932 ай бұрын
@@ByteWise0 i'm 17 brother and what bout u ?
@ByteWise02 ай бұрын
@@flopism493im 15 brother
@RO1O1O3 ай бұрын
im already learning c++
@anonimuroman3 ай бұрын
me too brother
@TheAsp1213 ай бұрын
you really the biggest skid on yt ebola🤣
@greg_pizzatower3 ай бұрын
incredible
@MateiStory2 ай бұрын
im on Mac how can I download visual studio I only have Mac
@ToolsHUB-Beta2 ай бұрын
ebola you can do bool name{}; "name";
@projectmusictroll3 ай бұрын
hi ebola you're the goat
@vadiks200323 ай бұрын
wouldn't it make more sense to teach C for skids first and then expand it on C++?
@Hnxzxvr3 ай бұрын
Skids heads would explode if they saw c but it’s kinda of a bad language it’s hard to read
@vadiks200323 ай бұрын
@@Hnxzxvr i dunno c seems more raw, simple to me. it has basic rules and it follows these rules. C++ literally just throws binary shift left at you as an operator for printing and calls it "output" or whatever(altho its easier to understand than printf requiring you to know the type of your variable), and yells at you if you do sus things with pointers, and i never understand what C++ compiler tries to tell me C++ also has classes added on top of structs, which may be very confusing to differentiate for a newbie, since they seem like they serve the same purpose on the first sight std::string is simple to understand yeah, but when i learnt that string is basically just a pointer to an array of constant (for some reason?) characters, i was like "ooooh thats how it works" on the second thought, you're right C++ is better to teach for news than C
@smc5293 ай бұрын
true
@Hnxzxvr3 ай бұрын
@@vadiks20032 tbh the c++ syntax can be strange at times but c is really not memory safe c++ will at least throw an error if you over shoot the buffer limit
@vadiks200323 ай бұрын
@@Hnxzxvr thats the point. C is not memory safe, meaning you can learn on basic examples and see how doing a mistake would affect your code, for understnading, before moving onto C++ where it automatically looks after that
@lukehkaddict3 ай бұрын
thank you
@Fetus100BillOfMine2 ай бұрын
Make a bat thing if you put someones discord user id in, you get their IP.
@andregamer79232 ай бұрын
Thats like saying "make a paypal money generator" 😂😂 simply not possible
@Fetus100BillOfMine2 ай бұрын
@@andregamer7923 Can it be a discord bot
@Stream_CJ2 ай бұрын
Sam altman teaching c++😮suiii🥳
@jiro31092 ай бұрын
Make it in c#
@ItzIcyhere2 ай бұрын
Nooooo my favorite skid man is changing 😢
@alonecoder27992 ай бұрын
Teach the skids classes and namespaces
@SoNotClose3 ай бұрын
C# next😮
@polovr...2 ай бұрын
Make a tutorial for C-sharp
@RobloxRizz2 ай бұрын
This video is a C++ tutorial for beginners. The video covers the following topics: * Basic syntax and structure of C++ programs * Variables and data types * Operators * Control flow statements (if/else, for loops, while loops) * Functions * Arrays * Pointers The video is intended for people who are new to programming and who want to learn C++. The video is also intended for people who are familiar with other programming languages and who want to learn C++. The video is a good resource for beginners who want to learn C++. The video is well-organized and easy to follow. The video also includes a number of examples that help to illustrate the concepts being discussed.
@ummmmmf9712Күн бұрын
AI generated?
@Rawrl313 ай бұрын
C++ for skids, dont skid guys
@SeanTheKing2 ай бұрын
what Keyboard do u own Mr.Ebola
@zhornz3 ай бұрын
nah, i use golang for my ddos tools but however i chouldnt get how i can spam really fast without fcking my memory with goroutines
@real_kira9993 ай бұрын
best❤❤
@MichaelTheSequel2 ай бұрын
I'm gonna watch this later, this may be the thing that's gonna save my sourcemod from being just another shitty Half-Life map pack!
@DmN_DaNy392 ай бұрын
make one for batch please
@ToolsHUB-Beta2 ай бұрын
and do more c++ for skids lol
@suchy.chomik2 ай бұрын
next do c# winforms
@SOSA-x2k3 ай бұрын
please make a tutorial on how to make um game improvements ifykyk
@cashsux23 күн бұрын
Would python work for making tools?
@QKing-Official2 ай бұрын
Me using vs code and getting the error flood....
@JulianCK-ty9fu2 ай бұрын
This tutorial is the minimum to be turing complete
@Hnxzxvr3 ай бұрын
Yoooooo bro not using bat rare af
@mrpuppysuperprohackergodno75133 ай бұрын
Lol
@Zyber0993 ай бұрын
never thought i would see a gtag youtuber comment on an ebola man video lol
@Hnxzxvr3 ай бұрын
@@Zyber099lol every one says that
@Zyber0993 ай бұрын
@@Hnxzxvr crazy
@scamshunter6573 ай бұрын
im A SKID FOREVER!!!
@Snezze_1337pl2 ай бұрын
Tuto perfect for me
@aa-rg9jw3 ай бұрын
How can I learn to make scripts
@Yohines-s5w3 ай бұрын
I use c++ and rust if need help tell me
@Jukeduke_muki2 ай бұрын
bro pls make a video on how to get peopels ip thru discord cause i got ind and argument once with a guy in there and he pulled my ip without me pressing a link or anything