What can I safely assume about the initial values of variables which are not explicitly initialized?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by Stack unwinding?
What is copy constructor? Can we make copy constructor private in c++?
What is meant by forward referencing and when should it be used?
When to use “const” reference arguments in a function?
What is exception handling? Does c++ support exception handling?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
Should a constructor be public or private?
Explain working of printf?
When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?
What gives the current position of the put pointer?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
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.