what is strcture
i++ i ++i answer to this i=5 what is the out put
Answer Posted / bala
My answer is
1.
#include<iostream>
using namespace std;
int main()
{
int i = 5;
cout << ++i << i << i++ << endl;
return 0;
}
ANS:765
2.
#include<iostream>
using namespace std;
int main()
{
int i = 5;
cout << ++i ;
cout << i ;
cout << i++ << endl;
return 0;
}
ANS:666
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
what is template and type convertion
Who created stl?
totoo po ba ang manga aliens!
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
How do you convert stl to steps?
please visit this site you'll find my question this is my homework please answer it if you can http://easyscience.org/ib/lofiversion/index.php/t36168.html
What are the symptoms of stl?
Define stl.
When did c++ add stl?
What does stl stand for in basketball?
write a program that will accept a number and print.its equivalent in words the maximum input number is 9999
What is a standard template library (stl)? What are the various types of stl containers?
i wanted to know about questions about c,c++ , which is required for placements.... im a fresher
a program using one dimensional array that searches a number if it is found on the list of given input numbers given by the user and locate its exact location in the list.