#include <stdio.h>

int main(void) {
	unsigned char temp[] = "hello";
	printf("total nuber of elements in temp %d \n", sizeof(temp)/sizeof(temp[0]));
	
	//also remember that name of array gives address of first element.
	printf("first element in the array is => %c \n", *temp );
	printf("second element in the array is => %c \n", *(temp+1) );
	return 0;
}
