Why iomanip is used in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is an Object/Instance?
Define pointers?
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. --- │ │ │ │ │ │ ---
What are access specifiers in C++?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Implement strcmp
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.
What is the difference between equal to (==) and assignment operator (=)?
Can a class be static in c++?
Can we define function inside main in c++?
What is a Default constructor?
What are the main characteristics of C++ as a programming language?