![]() |
| Home | Tech FAQ | Interview Questions | Placement Papers | Tech Articles | Learn | Freelance Projects | Online Testing | Geeks Talk | Job Postings | Knowledge Base | Site Search | Add/Ask Question |
![]() Related Questions Latest Answer : #include #include /* Prototype Declaration */int validateDate(int dd, int mm, int yyyy);void printError();int calcDay_Dec31(int yyyy);int dayInYear(int dd, int mm);void nameInStr (char daysInWord[], int days);void main(void){ ... Latest Answer : In linux there is a memory debugging tool valgrind.With the help of valgrind, you can easily check the memory allocation or memory deallocation. ... Latest Answer : To reduce the final size of executable, remove any dead code, if there in the program (remove extra white spaces, extra commnets, extra tabs) and also use functions where ever possible, because it reduces the code and executable file size alot. ... 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 ... Tags : Abstract Latest Answer : #includeusing namespace std;/* factorial function --recursive*/int fact(int n){ if (n == 0) return 1; n=n*fact(n-1); return n;}int main() { int n=5; cout Latest Answer : ptr=realloc(ptr,newsize);This function allocates a new memory space of size newsize to the pointer variable ptr and returns a pointer to the first byte of the new memory block.The new size may be smaller or larger than the size.If the function ... Latest Answer : Create a new array and copy the old one in it. ... 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 ...
Sponsored Links
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||