What will be the output of following c program, and why?
int main() { int a=10; int b=0; b=++a + a++ + ++a + a++ + ++a; printf("%d",