Advertisement
Vankata17

change variables in c

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