+ 2
What actually ; does ? Sorry , i am a beginner ..
8 Answers
+ 14
It means end of statement;
this is a statement;
here begins another statement;
+ 6
it's called semicolon and it's work is to give computer to terminate the statement as it doesn't understand the gaps including space-bar, enter, tab space.
+ 2
it defines the end of a statement, meaning, that's the end of your line/statement
+ 2
its indicates that statements is end.
int a=10;
float b =2.0;
here after ; the int a=10 this line is end and next line is start
+ 1
end of line
+ 1
Ends your line of code
+ 1
thank u guys for support.
0
make you complier complain if you forget it