Operating System Development
Operating System Development
Development
Lecture-2
Preface
Introduction
Overview of C
Pointers
Introduction
In system software, they are used
everywhere. Because of this, it is
very important to master pointers.
A pointer is simply a variable that
holds the address of something. To
define a pointer, we use the *
operator:
char* pointer;
Inline Assembly