Interview Preparation Pointers

From Embedded Systems Learning Academy
Revision as of 17:35, 26 November 2016 by Proj user14 (talk | contribs) (Created page with " Pointers : A pointer is a variable who's value is address of some other variable i.e. it can be address of some memory location. <syntaxhighlight lang="C"> <varaible_type>...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Pointers : A pointer is a variable who's value is address of some other variable i.e. it can be address of some memory location. <syntaxhighlight lang="C"> <varaible_type> *<name> eg :

    int *pointer_to_integer