Tag Archives for Arrays and Pointers

program for understanding array of pointers

  #include<stdio.h> main ( ) {     static int arr[ 4 ] = { 5 , 10 , 15 , 20 };     static int *a[ 4 ] = { arr , arr + 1 , arr + 2 , … Continue reading

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

← Older posts