What will be the output of this c language program?
What will be the output of following c program, and why?
#include <stdio.h>
int main()
{
int a=10;
int b=0;
b=++a + a++ + ++a + a++ + ++a;
printf("%d",a);
printf("\n%d",b);
return 0;
}