Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // первая задача
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8. int* const x11 = 0;
  9.  
  10. char x2;
  11. const char* const x22 = &x2; //
  12.  
  13. typedef int* SMTH;
  14. SMTH x;
  15.  
  16. typedef long double* const CLD; //
  17.  
  18.  
  19. const unsigned short int *x44;
  20.  
  21. double x5;
  22. const double* const x55 = &x5;
  23.  
  24. float* k;
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement