sizeof - is it a function or operator?
Answers were Sorted based on User's Feedback
Answer / aboelella
sizeof is a unary operator
It is used to get the size of datatypes
It can be used with all primitives
| Is This Answer Correct ? | 34 Yes | 1 No |
Answer / shabeer
sizeof is a unary operator
it is used to get the size of datatype
it can be used with all primitives
| Is This Answer Correct ? | 17 Yes | 1 No |
Answer / chandrakant rohi
sizeof is a operator it size of variable
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / naveen
sizeof is a function which return the size of variable or
an object
| Is This Answer Correct ? | 2 Yes | 25 No |
Which is better turbo c++ or dev c++?
Const char *p , char const *p What is the difference between the above two?
How do you add an element to a set in c++?
Explain linked list using c++ with an example?
When volatile can be used?
What is the difference between passing by reference and passing a reference?
What does new in c++ do?
What are maps in c++?
What is array in c++ pdf?
What is pointer to member?
Can I learn c++ as my first language?
if int1 has the value 12, int has the value 18, and int3 has the value 21, what is the result: int1 < int2 && int2 < int 3