what is the main difference between c and c++?
Answer Posted /
c is like coffee
but c++ is like coffee with extra sugar
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is abstraction in oop?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
What is for loop and its syntax?
program for insertion ,deletion,sorting in double link list
What are oops methods?
What is polymorphism explain?
What is inheritance in oop?
Why do we use polymorphism in oops?
Why is object oriented programming so hard?
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 constructor in 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 polymorphism in oop example?
write a program to find 2 power of a 5digit number with out using big int and exponent ?
Write a program to sort the number with different sorts in one program ??