#include <stdio.h>
int main() {

	int a[]={1,2,3,4,5};
	if(&a[0] == a)
		printf("Address of first element of an array is same as the value of array identifier\n");
	if(&a == a)
		printf("How can a value and address of an identifier be same?!");
	
	return 0;
}