Tag Archives for Arrays and Pointers

program for understanding the concept of array of pointers

  #include<stdio.h> main ( ) {     int * arr[ 3 ];     int a = 5, b = 10, c = 15, i;     arr[ 0 ] = &a;     arr[ 1 ] = &b;     arr[ 2 ] … Continue reading

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

← Older posts

Newer posts →