Skip to content

Commit 9aa1649

Browse files
Update dereference.adoc
Removed "and" Line 49
1 parent c07a147 commit 9aa1649

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Structure/Pointer Access Operators/dereference.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ result = *p; // 'result' gets the value at the address pointed by 'p'
4646

4747
[float]
4848
=== Notes and Warnings
49-
Pointers are one of the complicated subjects for beginners in learning C, and it is possible to write the vast majority of Arduino sketches without ever encountering pointers. However for manipulating certain data structures, the use of pointers can simplify the code, and and knowledge of manipulating pointers is handy to have in one's toolkit.
49+
Pointers are one of the complicated subjects for beginners in learning C, and it is possible to write the vast majority of Arduino sketches without ever encountering pointers. However for manipulating certain data structures, the use of pointers can simplify the code, and knowledge of manipulating pointers is handy to have in one's toolkit.
5050
[%hardbreaks]
5151

5252
--

0 commit comments

Comments
 (0)