Intro To Iostream, Stdcout... Flashcards
1
Q
Iostream library
A
Part of the c++ standard library that deals with basic input and output
2
Q
Stdcout
A
Allows us to send data to the console to be printed as text
3
Q
Insertation operator
A
Used to send text to the console, to print more than one thing on the same line, can be used multiple times
4
Q
End line std::endl
A
It moves the cursur to the next line and it flushes (makes sure it shows up on screen) the output
5
Q
‘\n’
A
Moves the cursor to the next line, doesn’t flashes
6
Q
Std::cin
A
Character input, reads input from keyboard using extraction