How much maximum can you allocate in a single call to malloc()?
No Answer is Posted For this Question
Be the First to Post Answer
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
How come you find out if a linked-list is a cycle or not?
What is the advantage of an external iterator.
What is function prototyping? What are its advantages?
Explain selection sorting?
What is the c++ programming language used for?
What is pointer to member?
why is c++ called oops? Explain
What are multiple inheritances (virtual inheritance)?
What is a dangling pointer?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
Why can you not make a constructor as const?