It's important to note that "else if" isn't a separate type of statement like "elif" in python, it's just an "else" that happens to be followed by another "if"
@josephcohen7343 жыл бұрын
Thanks. I always wonder about this with new languages.
@Lucas-yh5zz3 жыл бұрын
Wait but if that's the case wouldn't the second if statement be inside the else's block of code? Like this: If (condition 1) { } Else { If (condition 2) { } }
@yxlxfxf3 жыл бұрын
@@Lucas-yh5zz what you wrote is valid c++, but if/else clauses do not require a code block, they can be directly followed by a single statement without curly braces. You can write things like: if (a) statement1; else statement2; If statement2 is another if-statement, you get the "else if" construction, but the "else" is totally separate from the "if" that follows it. You can put any other keyword there, like "else for", "else while" or anything really, those aren't new types of statements but just an "else" followed by a separate statement.
@pimpwiththis88853 жыл бұрын
Your teaching method is impeccable, love your videos...
@ananthramvijayaraj45543 жыл бұрын
Congrats on 600K subs!!
@hawking33963 жыл бұрын
Your building such a cornerstone for all and sundry .
@onurcanokay3 жыл бұрын
I think you should have included the "switch" statement. Nice vid. Thanks!
@yourdadsbestfriend71013 жыл бұрын
great vid tim
@shedrackjassen9132 жыл бұрын
Tim, your the best bruh😎😎😎
@seireiart3 жыл бұрын
I couldn't hold my laugh when I read the title because I remember a famous gamedev (or infamous if you will) using them as his life depending on it xDD
@megnus3rs5 ай бұрын
what's their name
@seireiart5 ай бұрын
@@megnus3rs It's none other than YandereDev lol
@aoronbarlow65243 жыл бұрын
Hi Tim Thanks for this Series. I'm seeing that every single ML job description is listing C++ experience as prerequisite although python and its libraries are there. So are there any plans to make ML with C++ series ? I don't know why C++ is required for ML engineering positions. Could you also elaborate that little bit?
@KhalilYasser3 жыл бұрын
Thanks a lot Tim.
@TheShehabKhan Жыл бұрын
Helpful!
@videokriitikko55093 жыл бұрын
Nice, maybe "Learn C With me" next !
@mastershooter643 жыл бұрын
C is basically the same as c++ but without a few stuff, like classes, object-oriented programming stuff like abstraction, inheritance, etc. But the basic syntax is the same, most of the time you can code in c with only c++ knowledge
@Davidku6323 жыл бұрын
Another reason of using else if instead of if is performance. 1000 ifs will run slower than 1000 if and else ifs because in first case all of them are running even if one is true while in second case if one is true the rest won't run
@AlfredAceic2 ай бұрын
Perfect.
@codewithlikhit3 жыл бұрын
Can you post a advanced tutorial on a full stack web app
@neontuts56373 жыл бұрын
Nice Video. Is their shorthand method to do conditional in C++. Like the ternary-operator in JavaScript?
@neontuts56373 жыл бұрын
@Shivansh Sahu Oh! It's same in JS. Thanks🙏
@notme12823 жыл бұрын
you don't actually need curly braces for the if statement, as long as the indentation is proper
@shubhrajit2117 Жыл бұрын
Thanks ;)
@ThePhantomCoder3 жыл бұрын
Hey Tim! 😀 So I wanted to ask you to try out TabNine for a week or so. It's an amazing ai auto-completion tool, but I like it so much better then Kite, especially for repetitive code. Kite pro is probably better then TabNine free, but assuming you use the free version I think you should try it out and maybe make a video about it if you like it.
@salafytech85783 жыл бұрын
What is the difference between C and C++
@dr.schlopp40893 жыл бұрын
Basically C++ >= C, but with classes and a few other OOP data type additions. You could essentially run any C scripts in C++, but you can't run all C++ scripts using C, if that makes sense.