Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- //создание пространства имен
- namespace nm
- {
- int func(int a)
- {
- std::cout << a;
- }
- }
- int main(int argc, char *argv[])
- {
- setlocale(LC_ALL, "Rus");
- srand(time(NULL));
- //вызов функции прстранства имен
- nm::func(4);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement