Advertisement
Mlack

Untitled

Jul 29th, 2013
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cstdio>
  4. #include <iomanip>
  5. #include <cmath>
  6. #include <string>
  7. #include <vector>
  8. #include <set>
  9. #include <iterator>
  10. #include <fstream>
  11.  
  12. using namespace std;
  13.  
  14. int main()
  15. {
  16.     char* s; // указатель на символ
  17.     int mas[10] = {}; // массив из 10 целых
  18.     int* pl = mas; // ссылка на массив из 10 целых
  19.     char lol[] = {};
  20.     char* hui = lol; // указатель на массив строк
  21.     const int pol = 1;// целая константа
  22.     const char* pol_1 = &pol; // указательна на целую константу
  23.     char* const pol_2 = &pol; // конст.указатель на констану
  24.  
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement