Browse Source

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 years ago
parent
commit
b1269c3b64
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      README-en.md

+ 2
- 1
README-en.md View File

@@ -55,7 +55,7 @@ In mathematics, a function $$f$$ is a rule that is used to assign to each elemen
55 55
 
56 56
 Functions in programming languages are similar. A function has a series of instructions that take the assigned values as parameters and perform a certain task. In C++ and other programming languages, functions return only one result, as it happens in mathematics. The only difference is that a *programming* function could possibly not return any value (in this case the function is declared as `void`). If the function will return a value, we use the instruction `return`. As in math that you need to specify the domain and range, in programming you need to specify the types of values that the function's parameters and result will have; this is done when declaring the function.
57 57
 
58
-### Function header
58
+### Function Header
59 59
 
60 60
 The first sentence of a function is called the *header* and its structure is as follows:
61 61
 
@@ -358,3 +358,4 @@ Use "Deliverables" in Moodle to hand in the file `main.cpp` that contains the fu
358 358
 
359 359
 
360 360
 
361
+