Advertisement
ifinox

Untitled

Dec 5th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. void zwrocDwaPrzezParametr(int * liczba)
  2. {
  3.     *liczba = 2;
  4. }
  5.  
  6. int main()
  7. {
  8.     int liczba;
  9.     zwrocDwaPrzezParametr(&liczba);
  10.     printf("%d", liczba);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement