Tag Archives for String and Pointers

program to print the address and character of the string with using pointer

#include<stdio.h> main ( ) {     char arr[ ] = "reena";     char *a;     a = arr;       while ( *a != '\0' )         {             printf ( "address= %u\t", a … Continue reading

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

← Older posts