fix(guide): update latest copy from guide repo

This commit is contained in:
Mrugesh Mohapatra
2018-10-12 04:30:38 +05:30
committed by mrugesh mohapatra
parent 73a97354e1
commit 7a860204af
833 changed files with 21403 additions and 3264 deletions

View File

@ -1,5 +1,5 @@
---
title: While-loop
title:While-loop
---
A while loop statement repeatedly executes a target statement as long as a given condition is true.
@ -18,7 +18,7 @@ Example:
```C++
#include <iostream>
using namespace std;
int main () {
// Local variable declaration:
int a = 10;
@ -28,7 +28,7 @@ int main () {
cout << "value of a: " << a << endl;
a++;
}
return 0;
}
```