answersLogoWhite

0

Because that is the defined statement terminator of the language.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

When to use simicolon?

Semicolon is a part of punctuation used mostly in coding. It denotes the end of line in many programming languages.


Should you use s semicolon after sincerely when ending a letter?

No. You can use a comma, and then your name a few lines below, but not a semi-colon.


Write in c-in and c-out in c plus plus and C programming?

In c++, to manipulate output & input you must use cin and cout. I will write a sample program to show you:#include //possibly iostream.husing namespace std; //This is what lets you use cin & coutint main(){cout


When do you use a semicolon in algebra?

Well, according to what I learned when I was in Algebra I, you should never have to use a semicolon.


A sentence with the word semicolon?

I can give you several sentences.You use a semicolon to separate two clauses.A semicolon is like a comma with a period on top of it.You need to learn how to use the semicolon properly.


Can you use two semicolon in one sentennce?

NO


Can you use a gerund after a semicolon?

A gerund is a verb with the -ing suffix, often turning it from a verb into the subject of a sentence. It is grammatically correct to use one after a semicolon as long as the clause after the semicolon is still independent, that is, it can still stand alone as a separate sentence.


What do you know about structure programming language?

first write main function and what are the use classes which type you want then give the data members to the member functions finally you will terminate the program


How do you use semicolon in if sentence?

I wouldn't use a semicolon in a conditional (if) sentence. Semicolons can join two independent clauses without a conjunction. The "if" clause in a conditional sentence is dependent, not independent.


How do you use a semicolon in a series?

Example-They use they following things:pens, pencils, and markers


In which of the-following situations would it be appropriate to use a semicolon?

To replace conjunctions and, or, but and to connect the main clauses in a compound sentence


By using awk programming how to count number of lines in a given file without wc command?

Use the following:awk 'END { print NR }'Awk will count the lines and print it out.