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