Advertisements
Advertisements
Question
What are a null statement and compound statement?
Solution
null statement: The “null or empty statement” is a statement containing only a semicolon. It takes the flowing form: ;
// it is a null statement
compound Statement:
In C++, a group of statements enclosed by pair of braces {} is called a compound statement or a block.
The general format of compound statement is:
{
statement1;
statement2;
statement3;
}
APPEARS IN
RELATED QUESTIONS
What is the alternate name of the null statement?
In C++, the group of statements should be enclosed within: ______
Identify the odd one from the keywords of jump statements?
Correct the following code sigment:
if (x = 1)
p = 100;
else
p = 10;
Compare an if and a ? : operator.
Write a program to find the LCM and GCD of two numbers.
Write a program to find sum of the series
S = 1 + x + x2 +..... + xn