+ 3
What is size of operator.
3 Antworten
+ 4
The sizeof operator in c/c++ gives how many bytes a variable or an object occupies in memory.
+ 2
how can we apply it and wht is it's significance in programming
+ 2
It is typically used while allocating memory dynamically using malloc function in C. These are useful for creating dynamic data structures like Linked lists and trees etc...