STL (140)
OOPS (873)
C++ General (2409) 1.Between 100 and 999 are some numbers that have the characteristics that if you cube the individual digits and sum together you will get the same number. 2. A program that can accept as input an integer and output the equivalent of that number in words.
3 6390Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
1 3620write a programe to calculate the simple intrest and compund intrest using by function overlading
2152give me an example for testing a program showing the test path .show how the test is important and complex.
TCS,
2886Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
TCS,
3160#include
#include
#include
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
2087
What is a dynamic binding in c++?
Should the this pointer can be used in the constructor?
What is abstraction c++?
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
Write bites in Turbo c++ Header ("Include") Files.
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is the difference between while and do while loop?
Are vectors passed by reference c++?
What is this pointer in c++?
Why should you learn c++?
Explain what you mean by a pointer.
Can you explicitly call a destructor on a local variable?
What are literals in C++?
what you know about c++?
Differentiate between a constructor and a method in C++.