What is malloc in c++?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
What is abstraction in c++?
is throwing exception from a constructor not a good practice ?
sizeof- is it functioning statically or dynamically?
What is encapsulation in C++? Give an example.
0 Answers HAL, Honeywell, Zomato,
Enter n no. of element and delete value from desire position
What is lambda expression c++?
List out some of the object-oriented methodologies?
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\"; } };
How do you generate a random number in c++?
What are the classes in c++?
How the endl and setw manipulator works?