Skip to content

Commit 77e053b

Browse files
committed
Language.
1 parent 64cc59b commit 77e053b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/arrays-as-function-arguments.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ array element**. So, you can just declare the argument as an pointer to an
77
element type and pass in an array name.
88

99
The reason for this is that as C can only pass arguments by value, copying array
10-
data to function arguments would be very inefficient.
10+
data to function arguments would be quite inefficient.
1111

1212
Even if you declare a function argument as an array, **the argument is always
1313
treated as a pointer**. The optional array size is accepted but ignored. Do

0 commit comments

Comments
 (0)