#include <stdio.h> void main() { char multiple[] = "I am a string"; printf("\nThe address of the first array element : %p", &multiple[0]); printf("\nThe address obtained from the array name: %p\n", multiple); }