Latest Answer: if you know that, plz, send it to me. ...
Latest Answer: In LINUX environment one can use VALGRIND and MPATROL free tools to find out possible memory leaks in programs. ...
Latest Answer: Once there was a BIG fat bug inside my computer which had claws like ...kidding.I recently had to debug an intetioanlly bugged program in a debugging test where a function was being called recursively and the function was creating a string and passing ...
Latest Answer: "new" is a Operator in C++ used to allocate the memory for the object on HEAP.It allocates the memory of the size equal to the size of Object.If the specified Memory available on heap then it allocates memory and return pointer to ...
Latest Answer: Chandima, .NET compiles code into MSIL - Microsoft Intermediate Language, not CIL - it's not known ) ...
The company pays a sales person on a commission basis. The sales person receives $200 per week plus 9 % of their gross salary for that week. For ex. if sales person who grosses 5000$ then he paid $650($200+$450).
Write a prog in C++ (using array of counter) that determine how many of the sales person earned salaries in each of following ranges (assume that each sales person salary is truncated to an integer amount) :a. $200-$299 b. $300-$399 so on..i. $1000 and over
Latest Answer: The Standard C++ language definition says:
A class with an empty sequence of members and base class objects is an empty
class. Complete objects and member sub-objects of an empty class type shall have
nonzero size.
Most compiler give a size of 1. ...
What is the difference between char str, char *str and char* str ?Explain the meaning of char* or int* ?
While copying the objects if we say X a=b, X a(b) What will it call, assignment operator or copy constructor? Justify
View page << Previous 2 3 4 5 [6] 7 8 9 10 11 Next >>

Go Top