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 |
Difference between const char* p and char const* p?
How do I make turbo c++ full screen?
What you know about structures in C++?
0 Answers Agilent, ZS Associates,
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
Why is it called c++?
How the delete operator differs from the delete[]operator?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
Declare a class vehicle and make it an abstract data type.
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
Is map sorted c++?
How do I run c++?
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).