answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the character used at the end of executable statements in C plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What the different between non-executable files to executable files?

Executable means that the file has a series of instructions used to execute a program. Non-executable files are ones that do not have these instructions.


What is label in c plus plus?

Labels are used to mark the start of a code segment. They are often used in conjunction with goto statements, allowing procedural jumps and loops to be formed.


What is the notation used to place block of statements in a looping structure in C plus plus?

for( ; ; ) { statement_block; } while( conditional_expression ) { statement_block; } do { statement_block; }while( conditional_expression )


Which comma is used for characters in switch case statements?

There is only one comma, but it is not used in switch-case. Character literals are between apostrophes: 'x'


What command is used to assign executable permission to all for the filetxt in Linux?

the command to make anything executable is chmod +x <file>


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.


How can you turn a C plus plus program into a dot exe to run on a PC without a compiler?

To make C++ code into an executable program, you need a compiler. Compilation of a program doesn't have to be on the same computer as the one it's intended to be used on.


Why is curly bracket used in c plus plus?

Curly braces are used to mark the start and end of a statement, typically used when the statement body consists of two or more individual statements. However they are also used to mark the start and end of a class declaration and function bodies.


Can compound statements be used in place of simple statements?

Yes.


Can you see a programme of if syntax in c plus plus?

My self Dhilib... it is a simple query. if statement is a basic control statement. mostly it used in all the languages. also in c plus plus syntax: if(test condition) { true statements; } else { false-statements; } Example: void main() { int a,b; a=54; b=65; if(a>b) { cout<<" a value is big"; } else { cout<<"b value is big"; } }


Which character is used to continue a statement in SQLPlus?

'-' is used to continue a ststement in SQLPlusFor SQL statements and PL/SQL blocks there is no need for continuation character:SELECTenameFROMemp;set serveroutput onBEGINdbms_output.put_line ('Hello, world');END;/


Meaning of else if statement in c plus plus?

it is used often in the context: if(condition is true) {following statements will be executed}; else[meaning that if the above condition is not true] {following statements will not be executed} for example: if(x == 3) {cout<< "condition is true"; y=4;} else {cout<< "condition is not true"; y=x-1}