Latest Answer : Hi friends, There are 5 kind of storage classes auto - : like int extern-: used by other class or programm static -: retain the value through out the executionof the programm register-: First memory storage.Secquence ...
Latest Answer : The Package Diagram depicts system’s packages and their dependencies in a clear and precise manner. So if your system is very large then it is mandatory that all these must be represented in a clear and precise manner for present and future scope ...
Latest Answer : Class is not a Object simillarly Object cannot be a class. the relationship between this two is that the Object is an instance of the Class.If Car is a class then running car is the Object [it might comprise of other Objects also]. Simillarly if Heart ...
Latest Answer : There are some differences between Activity Diagram and Sequence Diagram -1)Using Sequence diagram it can be shown how processes execute in sequence; for example what operations are called in what order and what parameter. While using Activity diagram ...
Latest Answer : In C++, variable declared as static it is shared by all the objects of the class. It can be accessed only by a static function. ...
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). ...
Where does global, static, local, register variables, free memory and C Program instructions get stored?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Latest Answer : Storage classes in c are : Auto ,Extern,Static,Register,Volatile. ...