Teaching BPSC 4.0 बिहार उच्च माध्यमिक शिक्षक भर्ती (PGT) Mock Test 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
More than one of the above
5
None of the above