Jayaprakash Lakshmanasamy
Is it 35 or 42??
#include <stdio.h>
int main() {
int x=5;
printf("%d", x++ * ++x);
return 0;
}