#include<stdio.h> int main() { int arr[5] = {10, 20, 30, 40, 50}, i; for(i = 0; i < 5; i++) printf("Address of arr[%d] = %p ",i,arr+i); return 0; }