-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ead5b1a
commit 95b8535
Showing
2 changed files
with
605 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Pointers | ||
|
||
Pointers are like signposts in programming. They do not hold the data themselves but tell you exactly where to find it in memory. Think of them as an address for your data, letting you directly access and manipulate it. | ||
|
||
This makes pointers incredibly powerful, but also dangerous if mishandled as they can lead to critical errors like crashes or corrupted data. Whether you are optimizing memory usage or working with dynamic data structures, it is important to use pointers correctly. | ||
|
||
## Authors | ||
- Muhammad Hashim |
Oops, something went wrong.