🌐
GitHub
github.com › jflaherty › ptrtut13
GitHub - jflaherty/ptrtut13: A TUTORIAL ON POINTERS AND ARRAYS IN C · GitHub
Since Ted also put this in the Public Domain I plan on working on the tutorial to remove any links to his defunct website and point them to this repository. I also plan on cleaning up the tutorial a bit to remove a few 1990's references (when this turtorial was written) and if needed, update any code to the C11 standard. The first commit was exactly as ver. 1.2 of his tutorial on his website before it was deleted. Download it as a set of HTML/PDF pages compressed to a ZIP File.
Starred by 1.4K users
Forked by 102 users
Languages: HTML 48.7% | TeX 43.8% | C 7.1%
Starred by 15 users
Forked by 13 users
Languages: C 99.1% | Assembly 0.9% | C 99.1% | Assembly 0.9%
Starred by 23 users
Forked by 16 users
Languages: C 99.2% | Makefile 0.8% | C 99.2% | Makefile 0.8%
🌐
GitHub
github.com › ifding › learning-notes › blob › master › programming › c-cpp › c › pointers-and-structures.md
learning-notes/programming/c-cpp/c/pointers-and-structures.md at master · ifding/learning-notes
Person *getPerson() { for(int i=0; i<LIST_SIZE; i++) { if(list[i] != NULL) { Person *ptr = list[i]; list[i] = NULL; return ptr; } } //if there is no person available, then a new instance of a Person is created and returned Person *person = (Person*)malloc(sizeof(Person)); return person; } The returnPerson either adds the person to the list or frees it up. The array's elements are checked to see whether there are any NULL values. If it does, then person is added to that position and the pointer is returned.
Author: ifding
🌐
Chgogos
chgogos.github.io › oop › various › pointers › Pointers in C and C++.pdf pdf
Pointers in C and C++ Βασικές γνώσεις για τους δείκτες στη C++ Νοέμβριος 2019
Pointers in C and C++ Βασικές γνώσεις για τους δείκτες στη C++ Νοέμβριος 2019 · Τμήμα Πληροφορικής και Τηλεπικοινωνιών · Πανεπιστήμιο Ιωαννίνων · Γκόγκος Χρήστος ·
Author: yungdenzel
Find elsewhere
🌐
GitHub
gist.github.com › nicknapoli82 › 30f1c7b30e7b1561026d88655e5278f7
Everything in c is a pointer! · GitHub
I only intend to use simple types in this write-up. So we can qualify the size of each type used · Pretty simple. Lets try and keep it that way. The only thing left to examine in this section though, is the pointer type. Pointers ‘point to’ a location in the computers memory.
🌐
GitHub
gist.github.com › f69454ec3d889983dcb9969acebd4569
Understanding Pointers in C · GitHub
Save primehero/f69454ec3d889983dcb9969acebd4569 to your computer and use it in GitHub Desktop. Download ZIP · Understanding Pointers in C · Raw · myDearPointers.c · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below.
🌐
GitHub
github.com › topics › pointers-in-c
pointers-in-c · GitHub Topics · GitHub
You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. ... Curated list of problems to strengthen the C programming concepts along with some software engineering related modules like Linux fundamentals. c linux strings linux-shell sorting-algorithms memory-management searching-algorithms pointers-in-c
🌐
GitHub
gist.github.com › jakelevi1996 › 5fddfe58c25d5edb5a1da5d414824c41
Pointers in C (including function pointers) - Gist - GitHub
Pointers in C (including function pointers). GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
gist.github.com › 9260116
C Pointers in a nutshell · GitHub
Save pinealservo/9260116 to your computer and use it in GitHub Desktop. Download ZIP · C Pointers in a nutshell · Raw · gistfile1.txt · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below.
🌐
GitHub
gist.github.com › Gerjo › 3939313
Pointers in C · GitHub
Save Gerjo/3939313 to your computer and use it in GitHub Desktop. Download ZIP · Pointers in C · Raw · pointers.c · This file contains hidden or 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.
🌐
GitHub
github.com › jeet1235611 › Understanding-pointers-in-C-by-Yashwant-Kanetkar-practice-stuff-material
GitHub - jeet1235611/Understanding-pointers-in-C-by-Yashwant-Kanetkar-practice-stuff-material: These contains the codes in the book
These contains the codes in the book. Contribute to jeet1235611/Understanding-pointers-in-C-by-Yashwant-Kanetkar-practice-stuff-material development by creating an account on GitHub.
Author: jeet1235611
🌐
GitHub
github.com › jwasham › c-note › blob › master › README.md
c-note/README.md at master · jwasham/c-note
A Book on C: Programming in C (4th Edition): http://www.amazon.com/dp/0201183994/ C Primer Plus (6th Edition): http://www.amazon.com/Primer-Plus-Edition-Developers-Library/dp/0321928423/ Pointers on C - 1st Edition: http://www.amazon.com/Pointers-C-Kenneth-Reek/dp/0673999866 · Object-oriented Programming with ANSI-C (Free PDF): http://www.planetpdf.com/codecuts/pdfs/ooc.pdf ·
Author: jwasham
🌐
GitHub
github.com › Joyounger › pointers_on_c
GitHub - Joyounger/pointers_on_c: Pointers on C source code and problems solution · GitHub
Pointers on C source code and problems solution. Contribute to Joyounger/pointers_on_c development by creating an account on GitHub.
Starred by 10 users
Forked by 6 users
Languages: C 96.6% | Assembly 2.5% | C++ 0.9%