Tag Archives for Implementation of Pointers

Implementation of Pointers : Part 5

#include<stdio.h> main ( ) {     char a = 'p';     char *a1;     int b = 5;     int *b1;     float c = 5.5;     float *c1;     a1 = &a;     b1 = &b;     c1 = … Continue reading

15. November 2009 by Jishnu
Categories: C Programming | Tags: , | Leave a comment

← Older posts