You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
262 B

#include <stdio.h>
void swap(int a, int b);
int main(void) {
int i = 1, j = 2;
swap(i, j);
printf("i = %d, j = %d\n", i, j);
return 0;
}
// Twis will not swap because variables are just local
void swap(int a, int b) {
int temp = a;
a = b;
b = temp;
}