What is #include iostream h in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How do you decide which integer type to use?
Can recursive program be written in C++?
What is the v-ptr?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
Why c++ is created?
Why cout is used in c++?
Can you explain the term "resource acquisition is initialization?"
What is c++ vb?
What are the types of pointer?
how many controls can we place on single form.
Is map ordered c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.