Answer Posted / hrpynux@gmail.com
A reference variable is an alias, that is, another name for an already existing variable. Once a reference is initialized with a variable, either the variable name or the reference name may be used to refer to the variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a function to find the nth item from the end of a linked list in a single pass.
When we use Abstract Class and when we use Interface?where we will implement in real time?
Explain method of creating object in C++ ?
What does obj stand for?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
Difference between an inspector and a mutator
Does improper inheritance have a potential to wreck a project?
Is it possible to provide default values while overloading a binary operator?
A company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9 percent of their gross sales for that week. For example, a saleperson who sells $5000 worth of merchandise in a week receives $200 plus 9 percent of $5000, or a total of $650. You have been supplied with a list of items sold by each salesperson. The values of these items are as follows: Item Value A 239.99 B 129.75 C 99.95 D 350.89 Write a program that inputs one salesperson's items sold in a week (how many of item A? of item B? etc.) and calculates and displays that salesperson's earnings for that week.
Can we change the basic meaning of an operator in c++?
Why is c++ is better than c?
Explain how to initialize a const data member.
What is a map in c++?
What is null pointer and void pointer and what is their use?
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?