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

