Heck yes. Keep these updated vids coming pls. My C++ term starts next week :3
@FrederikWollert7 ай бұрын
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
@artemzakharchuk2842 Жыл бұрын
#include using namespace std; int main() { string names[8] = {"Artem", "Eva", "Yula", "Polina", "Lesha", "Bogdan", "Nikita", " Dima"}; cout
@albertomecanicaslocassergio10 ай бұрын
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
@Rashed_164 ай бұрын
someone tells him about using namespace std;
@theday563 ай бұрын
he mentioned in another vid why he doesnt use it but i dont remember
@Rashed_163 ай бұрын
@@theday56 oh okay
@Lokvie2 ай бұрын
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;''
@tavares._art11 ай бұрын
using namespace std int main() { int shoeSize [6] = { 33, 35, 37, 39, 41, 43} cout shoeSize
@waafQ322 күн бұрын
man my size is not even close to what you entered
@tavares._art22 күн бұрын
@@waafQ3 lol
@BioElectricDuck16 күн бұрын
1:22 was so good
@MuzoGonViral3 ай бұрын
#include #include using namespace std; int main() { string car[]={"toyota, Nissan,isuzu"}; cout
#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