STL (140)
OOPS (873)
C++ General (2409) What is the 4 difference between delete[] and delete?
What do you mean by public protected and private in c++?
Write a c program for binary addition of two 8 bit numbers.
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
Define a nested class. Explain how it can be useful.
What do you understand by a pure virtual member function?
Is java made in c++?
How can I disable the "echo" feature?
What is the use of dot in c++?
What is overloading unary operator?
Explain deep copy?
Explain the static storage classes in c++.
What does it mean to declare a member function as static in C++?
Why is oop better than procedural?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---