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 |
Which is the best c++ software?
What are virtual constructors/destructors?
What is ctime c++?
What is c++ manipulator?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
What does floor mean in c++?
How to write a program such that it will delete itself after exectution?
Can comments be nested?
What is const in c++?
What is malloc in c++?
Explain the register storage classes in c++.