What will be output if you compile and execute the following ‘C’ code?
void main() { int i=4,x; x=++i + ++i + ++i; printf("%d",x); }