difference between the c++ and c languages
Answers were Sorted based on User's Feedback
Answer / thana_8889
c has no object but c++ has object
c topdown approach c++ bottom up approach
c cannot be overloading c++ we can do
c is the subset of c++
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / raj&
<c is based pop principals
>c++ is based oops principals
<(<c
>c++)
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / achal
c++ is quite different from c. Here I add to above answer.
1. C++ has more rigid typecasing rules while c does not.
2. In C, structure copy is not permissible while most c++
compilers provide default copy constructors.
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / jaya
in c data hiding is not possible and we have to write
complete program at a time.whereas in c++ data hiding is
possible and one can divide a huge program into certain
small programs later combine it into one as per one's
choice.moreover we hav header file different.eg:<stdio.h>
in c supports printf & scanf statements while <iostearm.h>
in c++ supports cout statements......
| Is This Answer Correct ? | 0 Yes | 0 No |
Can char be a number c++?
What is the difference between *p++ and (*p)++ ?
Why #include is used?
What is Memory Alignment?
1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?
What is the use of static functions?
Write a program which employs Recursion
Define copy constructor.
throw Can constructors exceptions?
Explain the difference between abstract class and interface in c++?
What is an adaptor class or wrapper class in c++?
What is an object in c++?