Tuesday 11 October 2016

POINTER IN C

CODINGCLASSES|LEARNTOPROGRAM



POINTER IN C

                           POINTER
Initialization of Pointer

E.g:-

int a = 20;

int *ptr; //pointer declaration

int =&a ; //pointer intialization and declaring together
 or
int *ptr =&a;

                    keep Coding!!


No comments:

Post a Comment