Advertisement
Vankata17

increment in c

Mar 7th, 2022
813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. void increment(int* num){
  3.     (*num)++;
  4.  
  5. }
  6. int main(){
  7. int a = 20;
  8. increment(&a);
  9. printf("a = %d\n",a);
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement