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
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
Write a function to find the nth item from the end of a linked list in a single pass.
What is the use of data hiding?
When should overload new operator on a global basis or a class basis?
Define a conversion constructor?
Which software is best for c++ programming?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
What are the advantages of c++?
In a function declaration, what does extern mean?
Do you know about C++ 11 standard?
How will you call C functions from C ++ and vice-versa?
What is the use of pointer in c++ with example?
What can I safely assume about the initial values of variables which are not explicitly initialized?
What is the difference between global variables and local variable
What is capacity in vector in c++?