mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-12 01:34:19 +02:00
[c/en] Fix spell error, make spacing in comment consistent (#5357)
This commit is contained in:
2
c.md
2
c.md
@@ -572,7 +572,7 @@ int add_two_ints(int x1, int x2)
|
|||||||
/*
|
/*
|
||||||
Functions are call by value. When a function is called, the arguments passed to
|
Functions are call by value. When a function is called, the arguments passed to
|
||||||
the function are copies of the original arguments (except arrays). Anything you
|
the function are copies of the original arguments (except arrays). Anything you
|
||||||
do to the arguments in the function do not change the value of the original
|
do to the arguments in the function does not change the value of the original
|
||||||
argument where the function was called.
|
argument where the function was called.
|
||||||
|
|
||||||
Use pointers if you need to edit the original argument values (arrays are always
|
Use pointers if you need to edit the original argument values (arrays are always
|
||||||
|
Reference in New Issue
Block a user