Heck yes. Keep these updated vids coming pls. My C++ term starts next week :3
@FrederikWollert9 ай бұрын
I really like your C++ series. Keep it up. Please make more C++ Videos. So, let's defeat the KZbin algorithm.
@batknight22412 ай бұрын
mann thanks alot i was having a real hard time understanding arrays, u explained in the most easiest way. i got an exam tomm u a life saver
@AnimateIt2BauBau Жыл бұрын
The edit at 5:18 was so smooth
@Rashed_166 ай бұрын
someone tells him about using namespace std;
@theday565 ай бұрын
he mentioned in another vid why he doesnt use it but i dont remember
@Rashed_165 ай бұрын
@@theday56 oh okay
@Lokvie4 ай бұрын
It might be useful for some projects, but it is a bad practice. It makes the code harder to read for others and also makes it harder for you to write when you have to work on someone elses project, that doesn't use ''namespace std;''
@legendarygamer39605 күн бұрын
He uses std::
@artemzakharchuk2842 Жыл бұрын
#include using namespace std; int main() { string names[8] = {"Artem", "Eva", "Yula", "Polina", "Lesha", "Bogdan", "Nikita", " Dima"}; cout
@albertomecanicaslocassergio Жыл бұрын
It's a good start, but you can reduce the amount of lines doing: #include using namespace std; int main() { string names[] = {"Artem", "Eva", "Yula", "Polina", "Lesha", "Bogdan", "Nikita", "Dima"}; for(std::string name : names){ cout
@BioElectricDuck2 ай бұрын
1:22 was so good
@tavares._art Жыл бұрын
using namespace std int main() { int shoeSize [6] = { 33, 35, 37, 39, 41, 43} cout shoeSize
@waafQ32 ай бұрын
man my size is not even close to what you entered
@tavares._art2 ай бұрын
@@waafQ3 lol
@jessie.650729 күн бұрын
what’s the difference between a vector and an array
@masterchief55897 күн бұрын
An array is static it's size can be set only upon declaration and will never change however, vector is dynamic it's size can change at all times, but it's a little less optimized than an array whether you should use array or an vector depends on the purpose of the variable. If you need a list whose size changes all the time, like let's say students in school but if you don't need to change size, use an array
@Cinarbayramic6 күн бұрын
i came here for std::array but whats the difference anyways
@yahyaarfaoui8526 Жыл бұрын
Array[ "good job"];
@ai-scifn7 ай бұрын
Sir zoom out the screen
@oximas-oe9vf2 жыл бұрын
what would happen if you try putting accessing an element out side the array in c++ i.e.(std::cout
@FlorrioEggGaming Жыл бұрын
uhh that shouldn't even happen ,you are only meant to get a warning that this value doesn't exist
#include int main (){ int pizza = 1; int neutral = 2; int choise; Std::string neutralmenu[]= {“meat”, “pasta”,”bread”} pizzamenu[]={“margherita”,”marinara”,”capricciosa”}; std::string std::cout
@ancientastronauttheorists Жыл бұрын
#include using namespace std; int main() { double prices[] = {3.40 , 4.33, 22.50}; prices[0] = 30; cout