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); }