Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C While Loop
C भाषा में, निम्नलिखित में से कौन सा एक पाश कथन (लूप स्टेटमेंट) नहीं है?
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);
}