any syntactically correct expression or operation or function call, which does not contain any errors(on compilation) is a statement in C
2006-10-06 03:25:43
·
answer #1
·
answered by Prancing Stallion 2
·
1⤊
0⤋
A statement is pretty much any language is just a line of code that isn't a comment.
Rawlyn.
2006-10-06 11:09:44
·
answer #2
·
answered by Anonymous
·
1⤊
0⤋
in all programming languages statement means a line of code
example in C printf("hello world!"); or the if statement.. etc
2006-10-06 10:25:41
·
answer #3
·
answered by Woimy 2
·
1⤊
0⤋
a statement in c looks like this:
Include ; <= this is an include statement
{
cout << "hello world" << endl; <= output statement
}
2006-10-06 10:36:14
·
answer #4
·
answered by sybergoose 2
·
0⤊
0⤋
In C language Statements are
every thing writen in between opening and closing of currly braces that is in between {
--------
-----
}
this
2006-10-06 10:28:31
·
answer #5
·
answered by HEMA A 1
·
0⤊
1⤋