answersLogoWhite

0

No. That would be a syntax error. Only a right semicolon (;) can go at the end of a statement.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How can write the name in c plus plus language without using cout statement?

I believe, you can use C-function - printf().


What is the character used at the end of executable statements in C plus plus?

The semi-colon converts a C++ expression into a statement.


Which statement is not frequently used in C plus plus?

The goto statement.


How can you print your name in c or c plus plus with out using semi column?

You can not print your name in C without a semi colon because according to the rules of C every statement should end with a semi colon.In fact without the semi colon it fails to be a valid C statement.


What is a do while statement in c plus plus?

A do-while statement is a type of loop that iterates while a condition remains true. The condition is evaluated at the end of each iteration, thus the statement always executes at least once. do { statement; } while (expression);


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.


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 '}').


Looping statement in c plus plus?

There are several 'looping' statements in C++. They are:while () { }do { } while () ;for (index-start, index-end; index increment/decrement) { }They are used to repetitively execute statements as long as the statement(s) controlling the loop are true.


Write a single C plus plus statement that prints too many if the variable count exceeds 100?

if(varcount > 100) printf("Too many\n");


Basic control structure available in c plus plus?

The basic control structure in C++ is the if statement.


Can you write while statement in c without condition?

No


A c plus plus statement that invokes a function is known as?

...a function call.