Latest Answer: is this auestion refers to how many bits are set to 1 in a value.if that is the question then simply convert that value into bit code....then you can get the answer easily..... ...
Latest Answer: All the solutions above are reading the source code with the files concepts.find a solution where you do not have a source file to read the contents.There is a macro or an attiribute which tells the compiler the name of the program, function or the attribute. ...
Latest Answer: There are 2 types of Polymorphism1. Compile time Polymorphism2. Run Time PolymorphismCompile time polymorphism is used for Function overloadingRuntime is used for implementing virtual functions,overriding etc. ...
Latest Answer: Overloading is related to the use of a function or an operator. For example you can use a function for adding some integers as well as floats so this function is overloaded as it works for two different kind of inputs.
Where as overiding is in the case ...
Latest Answer: Amit Banerjee Wrote: Delete this is not acceptable or possible since delete this means we are trying to delete the reference of the object and calling the function from the object itself. Its like Kalidas , trying to cut the same branch on ...
Latest Answer: recursion is a fuction which calls itself ...
Latest Answer: Creating the new defination of exiting datatypes or user-dfined data types.For ex:-typedef int myval;myval value;i.e the value variable is the type int ...
Latest Answer: It is possible to declare and define body functions in header files, there is no restrictions to create your all code inside a header file.SourceCode.c:#include "SourceCode.h"SourceCode.h:#include #include int Calc(int ...
Latest Answer: A structure is a cunstructed data type, Which has a mecanism for packing of different type of data. ...
Latest Answer: pointer : pointer is a derived data type which holds addresses as its value. it points to value at it's address.for ex:int *p;does not mean p type is integer. p can't be int. p is just a pointer variable. the above declaration means p is a pointer to ...
View page << Previous 3 4 5 6 [7] 8 9 10 11 12 Next >>

Go Top