Advertisement
darius90

9.C növelés

Dec 8th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  void novel (int i){ //void=növelés parancs int i=megadott szám (x)
  5.  printf("%d\n",i+1);
  6.  }
  7.  
  8.  
  9. int main()
  10. {
  11.   int a=5;
  12.     novel(a);
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement