answersLogoWhite

0

A compound statement is a code block. We typically use compound statements as the body of

another statement, such as a while statement:

while (i >= 0)

{

a[i] = x;

++x;

--i;

}

Note that all compound statements are surrounded by braces {}.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

Why the semicoloumn is used in c program?

Why semicolon? Tradition.What does it do? Terminates a single statement, eg:i+= 3; /* expression is a single statement */{ i= 3; --j; } /* no semicolon after the compound statement */


What does a statement in c plus plus end with?

A simple statement ends with a semi-colon (';'). A compound statement contains one or more simple statements (with semi-colon terminators) enclosed within opening and closing braces ('{' and '}').


Which statement is not frequently used in C plus plus?

The goto statement.


Can you program games with c plus plus?

Yes, you can program games with C++.


Is C function a compound statement?

yes


What are the usage of IF statement in C plus plus program?

Conditional execution. if (1==2) puts ("Wow, 1==2"); else puts ("No, 1<>2")


What is the deffernce of the switch statement and the if statement in c plus plus?

If statement is single selection statement,whereas the switch statement is multiple selective.


How to restart c plus plus program?

Exit the program and relaunch it.


Lint is a compiler b a interactive debugger c a cinterpreter d a tool for analysing c plus plus program?

d a tool for analysing c plus plus program


How do you write a arithmetic operations in c using compound assignment statement?

a = b = c


How do you write a C plus plus program that will display the first 10 positive prime numbers?

By learning how to program on C+.


Where did C plus plus program come from?

C++ is an extension of C, and was invented by Bjarne Stroustrup.