Explain the concept of friend function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the sizes and ranges of the basic c++ data types?
What do you mean by function and operator overloading in c++?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What are the advantages of using pointers in a program?
What is name hiding in c++?
What is setf in c++?
Why use of template is better than a base class?
Can 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
How can you tell what shell you are running on unix system?
Explain working of printf?
what are difference between c and c++?
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?