Latest Answer : In C you would use an array of pointer-to-functions and call the functions by using the array index. ...
Latest Answer : Object is a instance of a class . say for example if car is class ,maruti car and matiz car are objects of a class . ...
Latest Answer : Transient object : 1> emporary Object 2> Can not be serilised (ie. can not save to secodary ...
Latest Answer : Abstract classes: They are modeled with their names in italicsStatic Members: They are modeled with an underline ...
Describe about storage allocation and scope of global, extern, static, local and register variables?
Latest Answer : cc -o x.o x.c creats a object file ...
Latest Answer : substr(string, position [, count])It extract substring starting from start and going for count characters. If count is not specified, the string is clipped from the start till the end ...
Latest Answer : Object is an instance of class ...
Latest Answer : class is the collection of same type of objects .whereas object is an instance of a class.ex :humanbeing is a class whose objects can be man ,woman etc. ...
Latest Answer : 1)class is the advanced and the secured form of structure.2)Both are the abstract and user defined data types.3)By default the the behavior of the class contents is private and the structure is public.4)In C++ the structure is the class with public behavior.5)In ...