C - Variables and Data Types
What will be the output of this C code?
int main() {
int a = 10;
int b = 5;
a = b;
b = 20;
printf("%d %d", a, b);
return 0;
}