What is malloc in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

How do you declare A pointer to function which receives an int pointer and returns a float pointer

0 Answers  


What is abstraction in c++?

1 Answers  


is throwing exception from a constructor not a good practice ?

5 Answers   Ericsson,


sizeof- is it functioning statically or dynamically?

2 Answers  


What is encapsulation in C++? Give an example.

0 Answers   HAL, Honeywell, Zomato,


Enter n no. of element and delete value from desire position

1 Answers  


What is lambda expression c++?

0 Answers  


List out some of the object-oriented methodologies?

1 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


How do you generate a random number in c++?

0 Answers  


What are the classes in c++?

0 Answers  


How the endl and setw manipulator works?

0 Answers  


Categories