Write a corrected statement in c++ so that the statement
will work properly. x + y=z;
Answer Posted / rose
z= x+y
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
Write a recursive program to calculate factorial in c++.
Is c++ map a hash table?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
Difference between class and structure.
Why c++ is created?
How do you sort a sort function in c++ to sort in descending order?
Arrange Doubly linked list in the ascending order of its integral value and replace integer 5 with 7?
What is a v-table?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
Explain the isa and hasa class relationships. How would you implement each?
Is c++ still being used?
What's the order in which the local objects are destructed?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
Is map sorted c++?