Update index.md (#27090)

This commit is contained in:
muskaangupta15
2019-03-31 23:59:54 +05:30
committed by The Coding Aviator
parent 9f5eda74f5
commit 7af600ab0b

View File

@ -9,7 +9,7 @@ The `do while` loop has the following form:
do
{
// do something;
} while(expression);
} while(condition);
```
@ -24,7 +24,7 @@ Do something first and then test if we have to continue. The result is that the
```cpp
#include <iostream>
#include <iostream.h>
using namespace std;
int main()