what is the main difference between c and c++?
Answer Posted / c.arun raju
c is the object oriented programming language because in
c++ we can create objects and class, while c language is
based on the datas of c++ language and in c++ we use cout
and cin while in c scanf printf for input and output data.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How to improve object oriented design skills?
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 encapsulation in oop?
What is polymorphism used for?
Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)
What is abstraction in oops?
What is property in oops?
What is the oops and benefits of oops programming?
What are the features of oop?
Can you inherit a private class?
What is the main purpose of inheritance law?
Why do we use oop?
hi all..i want to know oops concepts clearly can any1 explain??
Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.
Write a program to reverse a string using recursive function?