Getting string error on following code:

Code:
#include<stdio.h>
#include<string.h>
void main()
{
char name[20];
name="Hello";
printf("%s",name);
getch();
}