Latest Answer: we can inherit within the declared class we cant use it outside the class ...
Latest Answer: Object file is the representation of code that a compiler generates by processing a source code file. Object files contain compact code, often called "binaries". A linker is used to generate an executable or library by linking object files together. An ...
What is difference between followin intialization.int iVar1;int iVar2 = int();and which one of two should we prefer always and why?
Latest Answer: In general, volatile keyword signals compiler that the declared variable should not be optimized by any ways (e.g. it should not be cached, kept in registers etc but anytime it's used - it should be read/written directly from/to the memory).Most often ...
Latest Answer: An object is an instance of a class.Suppose that class name is myclass class myclass{-----}When this myclass is called in mainmain(){ myclass cplus; /cplus is an object of the class myclass//This process is called instatiate an object./} ...
Latest Answer: Function Overriding: Redefining the behavior (function body) of a virtual function from a base class, in a child class. For example,class MyBaseClass{ public: virtual int MyVirtualFunc(int x, ...
Latest Answer: You CAN in SOME compilers, but it should be noted that according to Stroustrup onlyint main()and its argc,argv cousins are valid declarations of main according to the standard. ...
Hey anybody help me to write code for this programwap which display year,month & day presents in a year for eg.1. no. is 14 print 2 weeks2. no is 90 print 3 months3. no is 365 print 1 yearuser can input any no
How is static variable stored in the memory?( if there are 2 functions in a file,and the static variable name is same (ex var) in both the function. how is it keep seperately in the memory).
View page << Previous 9 10 11 12 [13] 14 15 16 17 18 Next >>

Go Top