char str[100] = {'\0'};
char str[100]; for(int i = 0; i < 100; i++) { str[i] = '\0'; }
char str[100]; memset(str,0x00,sizeof(str));