What are literals in C++?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between Overloading and Overriding?
35 Answers Appnetix Techno, GameLoft, HP, IBM, NIIT, Rohde and Schwarz,
Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
what is the size of this class class size { public: char data1; double d; int data2; char data3; double data4; short data5; }; please explain the padding for these double variables.
Is atoi safe?
Which algorithm do you like the most? Why?
What do you mean by stack unwinding in c++?
Program to check whether a word is a sub-string or not of a string typed
What are the uses of c++ in the real world?
Why pointer is used in c++?
What information can an exception contain?
How is static data member similar to a global variable?