// Header Files #include<iostream.h> #include<conio.h> void main() { int x,i; i=10; x=++i; cout<<"x: "<<x; cout<<"i: "<<i; getch(); }