How to add two numbers in C++
Q1. Write a program to add two numbers. Sample#01 Sample#02 Sample#03 Sample#04
Q1. Write a program to add two numbers. Sample#01 Sample#02 Sample#03 Sample#04
Comments do not affect the operation of the program. C++ supports two ways of commenting code: // line comment /* block comment */ The first one, known as line comment, discards everythingRead More…
There are four purposes of using cout. prints output sentence on screen Example: prints new line on screen Example: prints number on screen Example: prints the value of a variable on screenRead More…
Example: Write a program to display the following information as an output as like the following format. NUB Dhanmondi Dhaka Sample#01 Sample#02 Sample#03 Sample#04 Sample#05