C++ Programming
Write a program to print Hello, World on the standard output.
Write a program that uses the multiplication operator, *, to print the product.
Program to use
a separate statement to print each operand.
Write a program that uses a while to sum the numbers from 50 to 100.
write a while that prints the numbers from ten down to zero.
What are the differences between int, long, long long, and short?
What, if any, are the differences between the following definitions: int month = 9, day = 7; int month = 09, day = 07;
Explain the following definitions. For those that are illegal, explain what’s wrong and how to correct it.
(a) std::cin >> int input_value;
(b) int i = { 3.14 };
(c) double salary = wage = 9999.99;
(d) int i = 3.14;
Write a C++ program to find the largest word in a given string.