Advertisement
Ejejejejejjr

Пространства имен

Dec 27th, 2020
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. //создание пространства имен
  4. namespace nm
  5. {
  6.     int func(int a)
  7.     {
  8.         std::cout << a;
  9.     }
  10. }
  11.  
  12. int main(int argc, char *argv[])
  13. {
  14.     setlocale(LC_ALL, "Rus");
  15.     srand(time(NULL));
  16.  
  17.     //вызов функции прстранства имен
  18.     nm::func(4);
  19.  
  20.     return 0;
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement