Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. //deklaracja i implementacja funkcji poza main
  2. void zliczanie(int n) {
  3. ...bla bla bla...
  4. }
  5.  
  6.  
  7. int main()
  8. {
  9.     //wywołanie funkcji z parametrem
  10.     zliczanie(10);
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement