Welcome, Guest. Please login or register.

Author Topic: Mr. Biehl learns C  (Read 7243 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline SamuraiCrow

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 2281
  • Country: us
  • Gender: Male
    • Show all replies
Re: Mr. Biehl learns C
« on: April 06, 2005, 07:25:24 PM »
If you ever used the "makelink" command from the CLI then you know how to use pointers.  If you don't know how to use it then it might help to look at any AmigaDOS documentation you might have on it.

For a more complete idea of how pointers work: "hard" links are like references in C++ and "soft" links are like standard pointers in C.

Some of the most useful uses of pointers are linked lists and trees.  Both of which you should get familiar with in a hurry because linked lists are used everywhere in AmigaOS and trees are used in directory structures.