what is the main difference between c and c++?
Answer Posted / ravi.v
c has only 32 keywords. but c++ has 52 keywords
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What causes polymorphism?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
Write a c++ program to display pass and fail for three student using static member function
Why do we use oops?
What is encapsulation example?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What is class and example?
What is object in oops?
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 does no cap mean?
What type of loop is a for loop?
What is inheritance and how many types of inheritance?
What is overloading and its types?
Why do pointers exist?
What is encapsulation process?