Saved Bookmarks
| 1. |
Explain cascading of i/o operations |
|
Answer» The multiple use of input or output operators in a single statement is called cascading of i/o operators. Eg: To fake three numbers by using one statement is as follows cin>>x>>y>>z; To print three numbers by using one statement is as follows cout<<x<<y<<z; |
|