sizeof- is it functioning statically or dynamically?
Answers were Sorted based on User's Feedback
Answer / sujay singh
sizeof is generally a compile-time operation, although in
C99 it can be used at run-time to find the size of a
variable length array.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / saranya
sizeof operator is a runtime operator because it is used to
get the size of the variable during the runtime.
| Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by delegate? Can a user retain delegates?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
Is it possible to have a recursive inline function in c++?
What is the role of static keyword for a class member variable?
What is a stack c++?
How do you allocate and deallocate memory in 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 == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
List the features of oops in c++?
If you hear the cpu fan is running and the monitor power is still on, but you did not see anything show up in the monitor screen. What would you do to find out what is going wrong?
Are there interfaces in c++?
How do you clear a set in c++?
Is map thread safe c++?