what is the behaviour of C and C++ compiler for the below
statements.
int *p;
p = malloc(100);
Is the behaviour same ? or different ?
Answers were Sorted based on User's Feedback
Answer / venu
we should explicitly typecast. Otherwise it is give a
compilation error.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / pramodsingh_45
In "C" the implicit typecasting will be done from void* to
int* but in C++ we need to do explicit typecasting.
so in C++
p = (int*)malloc(100);
but in C
p = malloc(100) will also work.
Is This Answer Correct ? | 2 Yes | 0 No |
How to create a pure virtual function?
What will i and j equal after the code below is executed? Explain your answer.
What is a template in c++?
Where and why do I have to put the "template" and "typename" keywords?
Explain what are accessor methods?
Describe the main characteristics of static functions?
What is iostream in c++ used for?
Explain the use of this pointer?
What are the characteristics of friend functions?
Who invented turbo c++?
What is class invariant?
Difference between Overloading and Overriding?
35 Answers Appnetix Techno, GameLoft, HP, IBM, NIIT, Rohde and Schwarz,