Code:
int main()
{
	typedef char arr2[5];
	arr2 name="name";
	printf("%s",name);
	return 0;
}
In above code, if I declare arr2[5] name="name"; then it throws error. why?