What is a block and stream? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is a block and stream?

The question came to me when I was just starting c++ and I'm still a bit doubty since I don't understand that much by the app's definition.

11th Dec 2017, 9:02 AM
Anonymousgirl
3 Answers
+ 2
In C++, output stream is bytes of characters flowing from memory to a printer, screen or disk drive. The cout object is connected to the output devices just mentioned above , such as your screen. The input stream is bytes of characters flowing from devices such as a keyboard or a disk drive to memory . The cin object is usually connected to the keyboard. A block of code is a group of statements treated as a unit. Such as a function, or a loop or a if- then statement.
11th Dec 2017, 3:56 PM
Rick Zalman
+ 1
Wow this is all so complete. I really appreciate the help! Thank you all. I'm learning alot from these explinations.
11th Dec 2017, 8:33 PM
Anonymousgirl
0
block: Anything enclosed by curly braces is called a block. eg. void main(){ block 1.. public void hello(){ block 2... } } stream: Stream is a logical path between your program and the file you want to manipulate.
11th Dec 2017, 9:19 AM
Rachit Mishra
Rachit Mishra - avatar