Advertisement
MeehoweCK

Untitled

Sep 28th, 2018
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void funkcja1()
  6. {
  7.     cout << "Funkcja 1 zostala wywolana" << endl;
  8. }
  9.  
  10. int main()
  11. {
  12.     funkcja1();     // wywołanie funkcji
  13.  
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement