Advertisement
avr39ripe

cppExam2021

Jul 2nd, 2021
1,117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5.     char* ptrC;
  6.     double* ptr;
  7.  
  8.     void fun1(int a, bool b);
  9.     char fun1(bool value, int flag);
  10.     bool arr[3];
  11.  
  12.     bool a;
  13.     bool b;
  14.     bool c;
  15.  
  16.     fun1(1, false);
  17.     ///[100][200][201]
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement