Intro To Iostream, Stdcout... Flashcards

1
Q

Iostream library

A

Part of the c++ standard library that deals with basic input and output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Stdcout

A

Allows us to send data to the console to be printed as text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

‘\n’

A

Moves the cursor to the next line, doesn’t flashes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Std::cin

A

Character input, reads input from keyboard using extraction

How well did you know this?
1
Not at all
2
3
4
5
Perfectly