Hi friends,
look few objective question.....
#include<iostream>
using namespace std;
int main()
{
int i=3;
i += i++ + ++i;
cout<<i;
return 0;
}
answer = 13
#include<iostream>
using namespace std;
int main()
{
int i=3;
i =i+ i++ + ++i;
cout<<i;
cin.get();
return 0;
}
answer =11
#include<iostream>
using namespace std;
int main()
{
int i=3;
i =i+ (i++ + ++i);
cout<<i;
cin.get();
return 0;
}
answer = again 13
can any one reveal the concept of i++.
---------------------------------
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more
at the Yahoo! Mail Championships. Plus: play games and win prizes.
[Non-text portions of this message have been removed]