Latest Answer: Strcture : It is collection of data (Data Types) which can be different in nature e.g. Student{ ...
Latest Answer: hey the above mentioned both reasons r same and correct .but other than this there one minor difference between both that si with their default storage:malloc() stores garbage values by default n calloc() contains all zeros by default ...
Latest Answer: Macro is a Pre-prosser. The main advantage of using the macro is the speed of the execution of the program (if macro is not used in the program many times or if the program is small). The main disadvantage of the macro is it increase the size of the program ...
Latest Answer: When using by reference there is no new variable just a alias to the memory address, if this parameters is not constant it is possible to change the content of that address.When using by value a new variable will be created in memory and it is impossible ...
Latest Answer: The static variables persist their values between the function calls and the static functions is out of the class scoop means it can be invoked without the use of the object( cab be invocked by classname::functionname). ...
Latest Answer: Auto variables are stores in the Stack . ...
Where does global, static, local, register variables, free memory and C Program instructions get stored?
Latest Answer: The size of the array must be predefined whereas the size of the linklist is defined at the runtime, ...
Latest Answer: It is a technique if defining the constent data members or the variables. ...
Describe about storage allocation and scope of global, extern, static, local and register variables?
View page << Previous 10 11 12 13 [14] 15 16 17 18 19 Next >>

Go Top