state gov UP Police Computer Operator Grade A Mock Test 2023 Programming and Data Structure Programming in C
What is the output of the code written in C?
void main()
{
int k, v;
k = (v = 20, v + 2);
printf("%d", k);
}
1
20
2
2
3
22
4
Error
What is the output of the code written in C?
void main()
{
int k, v;
k = (v = 20, v + 2);
printf("%d", k);
}