📝 Technical Quiz

Time Left: 10s

1. What is the output of the following C code?
int a = 5; printf("%d", a++ + ++a);

10
11
12
Undefined