Is there something that we can do in C and not in C++?
Answer Posted / achal ubbott
One important difference between c and c++ is that c
compilers are loosely coupled. So it does not perform type
checking that much strictly and can allow some conversions
which otherwise most c++ compilers would not allow.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Is c++ a dying language?
If I is an integer variable, which is faster ++i or i++?
Which operator cannot be overloaded c++?
What is an iterator?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
Explain about vectors in c ++?
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
How can you quickly find the number of elements stored in a static array?
Explain shallow copy?
Can you declare an array without a size in c++?
Explain mutable storage class specifier.
What is the use of map in c++?
Explain the difference between using macro and inline functions?
Explain the concept of friend function in c++?
What are the advantages of prototyping?