mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-25 08:13:29 +03:00
Fixed typo in c.html.markdown
This commit is contained in:
parent
412b312c45
commit
f6c800dd2a
@ -294,7 +294,7 @@ int main() {
|
|||||||
printf("%zu, %zu\n", sizeof(px), sizeof(not_a_pointer));
|
printf("%zu, %zu\n", sizeof(px), sizeof(not_a_pointer));
|
||||||
// => Prints "8, 4" on a typical 64-bit system
|
// => Prints "8, 4" on a typical 64-bit system
|
||||||
|
|
||||||
// To retreive the value at the address a pointer is pointing to,
|
// To retrievve the value at the address a pointer is pointing to,
|
||||||
// put * in front to de-reference it.
|
// put * in front to de-reference it.
|
||||||
// Note: yes, it may be confusing that '*' is used for _both_ declaring a
|
// Note: yes, it may be confusing that '*' is used for _both_ declaring a
|
||||||
// pointer and dereferencing it.
|
// pointer and dereferencing it.
|
||||||
|
Loading…
Reference in New Issue
Block a user