Advertisement
sissou123

#include <iostream> in C++

Oct 2nd, 2023
678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | Source Code | 0 0
  1. #include <iostream> in C++ is a preprocessor directive that includes the "iostream" header file in your C++ program. This directive is essential for performing input and output operations in C++.
  2.  
  3. #include <iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     int a = 0;
  10.     int b = 0;
  11.     int c = 0;
  12. for more:https://www.file-upload.org/wla4w2u2edhh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement