#include <stdio.h>
#include <string.h>

int main(void) {
	// your code goes here
	volatile char temp[] = "pandyaelectronics";
	printf("size of string : %d \n", strlen(temp));
	printf("size of array : %d \n", sizeof(temp));
	
	return 0;
}
