17 lines
No EOL
217 B
C
17 lines
No EOL
217 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main() {
|
|
int a = 1;
|
|
int b = 2;
|
|
|
|
printf("a: %d b: %d\n", a, b);
|
|
|
|
int temp = a;
|
|
a = b;
|
|
b = temp;
|
|
|
|
printf("a: %d b: %d", a, b);
|
|
|
|
return 0;
|
|
} |