|
Related Questions |
View Answer |
 |
How many ways are there to initialize an int with a constant? |
View Answer |
 |
What?s the auto keyword good for? |
View Answer |
 |
What can I safely assume about the initial values of variables which are not explicitly initialized? |
View Answer |
 |
How do you decide which integer type to use? |
View Answer |
 |
What is the difference between declaration and definition?
|
View Answer |
 |
What is an algorithm (in terms of the STL/C++ standard library)?
|
View Answer |
 |
what are auto static variables and auto extern variables?
|
View Answer |
 |
How is static variable stored in the memory? ( if there are 2 functions in a file,and the static variable name is same (ex var) in both the function. how is it keep seperately in the memory).
|
View Answer |
 |
What is difference between followin intialization.
int iVar1; int iVar2 = int();
and which one of two should we prefer always and why?
|
View Answer |
 |
I was trying to use an "out int" parameter in one of my functions. How should I declare the variable that I am passing to it? |
View Answer |
 |
When you inherit a protected class-level variable, who is it available to? |
View Answer |
 |
Are private class-level variables inherited? |
View Answer |