Variables | C++ | Tutorial 6

preview_player
Показать описание

Throughout the course we'll be looking at various topics including variables, arrays, getting user input, loops, conditionals, object orientation, and much more.
Рекомендации по теме
Комментарии
Автор

The best channel to learn code from! You've been extremely helpful while I learn code :) Thank you!!

mojo.monkey
Автор

You are the man brother... Nice... What took a semester you did in minutes...

pimpwiththis
Автор

1:02 u used the same story in the php tutorial. Who's this

matiassolomon
Автор

BTW, for loops are like JavaScript for loops.

henryward
Автор

Does using \n instead of endl work the same?

pranilsingh
Автор

After watching first 6 videos...I feel it's basically the same as "C" lol

mukongshu
Автор

I am doing C++ for the first time... I came up with this... No google...

#include <iostream>
#include <unistd.h>

using namespace std ;

int main() {
char *character_name = getlogin() ;
character_name[0] = toupper(character_name[0]) ;
int character_age = 23 ;

puts("Hello!") ;
cout << "There once was a man named \e[1;34m" << character_name << "\e[0m" << endl ;
printf("He was %d years old\n", character_age) ;
cout << "He liked the name " << character_name << "\n" << flush ;
cout << "But did not like being " << character_age << endl ;
}

SouravTechLabs