How is new() different from malloc()?
No Answer is Posted For this Question
Be the First to Post Answer
What is code reusability in c++?
Is c better than c++?
What are the different operators in C++?
How to avoid changing constant values?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
without if else statement can be written ah
How can you say that a template is better than a base class?
Do class declarations end with a semicolon?
Why we use #include conio h in c++?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What is exception handling in C++?