what are the disadvantages of C++?
Answer Posted / nishanth
Hello i am not an expert in c++,but i am a student of computer science and our c++.
I think lack of arangement is the problem of this oop language
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
Is oop better than procedural?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?
Can an interface inherit a class?
Why multiple inheritance is not possible?
Why do we need oop?
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 persistence in oop?
Explain virtual inheritance?
officer say me - i am offered to a smoking , then what can you say
what's the basic's in dot net
What is inheritance and how many types of inheritance?
How is class defined?
What is overriding in oops?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
What is byval and byref? What are differences between them?