What are c++ files?
No Answer is Posted For this Question
Be the First to Post Answer
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.
How to declare an array of pointers to integer?
Why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?
What are the rules for naming an identifier?
what are the types of Member Functions?
Is arr and &arr are same expression for an array?
Name four predefined macros.
Why is c++ not purely object oriented?
Is it possible to get the source code back from binary file?
Explain selection sorting. Also write an example.
What is a list c++?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor