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



what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); ..

Answer / venu

we should explicitly typecast. Otherwise it is give a
compilation error.

Is This Answer Correct ?    3 Yes 0 No

what is the behaviour of C and C++ compiler for the below statements. int *p; p = malloc(100); ..

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

Post New Answer

More C++ General Interview Questions

How to create a pure virtual function?

1 Answers  


What will i and j equal after the code below is executed? Explain your answer.

1 Answers  


What is a template in c++?

3 Answers  


Where and why do I have to put the "template" and "typename" keywords?

0 Answers  


Explain what are accessor methods?

0 Answers  


Describe the main characteristics of static functions?

1 Answers  


What is iostream in c++ used for?

0 Answers  


Explain the use of this pointer?

0 Answers  


What are the characteristics of friend functions?

0 Answers  


Who invented turbo c++?

0 Answers  


What is class invariant?

1 Answers  


Difference between Overloading and Overriding?

35 Answers   Appnetix Techno, GameLoft, HP, IBM, NIIT, Rohde and Schwarz,


Categories