What will be the output of the following C code?
#include void main() { int a = -5; int k = (a++, ++a); printf("%d\n", k); }
Answer: A
No answer description available for this question.