#include<iostream>
using namespace std;
int main()
{
int x = 1;
++x;
cout<<" x = "<<x++<<endl;
cout<<" new x = "<<x<<endl;
return 0 ;
}
For further actions, you may consider blocking this person and/or reporting abuse
#include<iostream>
using namespace std;
int main()
{
int x = 1;
++x;
cout<<" x = "<<x++<<endl;
cout<<" new x = "<<x<<endl;
return 0 ;
}
For further actions, you may consider blocking this person and/or reporting abuse
Naveen.S -
LetsUpdateSkills -
Rakesh Reddy Peddamallu -
Bhavishya Aggarwal -
Top comments (0)