From 8eb754d4ebbec96cc5056f2ae4fc1c659a8588bc Mon Sep 17 00:00:00 2001 From: Miftah Mizwar Date: Tue, 13 Nov 2018 13:36:14 +0700 Subject: [PATCH] Update wrong output of the example of code (#22519) * [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md). * [x] My pull request has a descriptive title (not a vague title like `Update index.md`) * [x] My pull request targets the `master` branch of freeCodeCamp. * [x] None of my changes are plagiarized from another source without proper attribution. * [x] My article does not contain shortened URLs or affiliate links. If your pull request closes a GitHub issue, replace the XXXXX below with the issue number. Closes #XXXXX --- guide/english/c/if/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/if/index.md b/guide/english/c/if/index.md index 57bbc93358..fbadbd61fa 100644 --- a/guide/english/c/if/index.md +++ b/guide/english/c/if/index.md @@ -60,5 +60,5 @@ int main () { ## Output ``` -> a is not less than 5! --> Value of a is : 100 +-> Value of a is : 10 ```