josiftepe

Untitled

Dec 23rd, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include<stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. void add_selft(int *a, int b){
  6.     (*a) += b;
  7.    
  8. }
  9. int main() {
  10.     int *a, b = 10;
  11.     (*a) = 5;
  12.     add_selft(a, b);
  13.     printf("%d\n", *a);
  14.     return 0;
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment