In C language, which of the following is NOT a loop statement?
1
for ( int; condition; increment)
{
statement(s);
}
2
do {
statement(s);
} while (condition);
3
while (condition)
{
statement(s);
}
4
if (boolean _expression) {
statement(s);
}
else {
statement(s);
}