difference between c and c++?
Answer Posted / tania
In c++,access specifiers(public,protected,private)are used
while in C they are not used because in c there isn't any
data accessing restriction.
In c,I/O functions are scanf(),printf()respectively,but in
C++ cin>>,cout<< are used respectively.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain Text Manipulation Routines?
Which bit wise operator is suitable for turning off a particular bit in a number?
What are the benefits of oop in c++?
What is namespace std; and what is consists of?
Define pure virtual function?
What is the protected keyword used for?
What are the operators in c++?
What is fixed in c++?
Why cstdlib is used in c++?
Why do we use templates?
Why do we need templates?
What is an adaptor class in c++?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What c++ library is string in?
What is the use of class in c++?