int main(){
char str[10]; char * p_str = 0;
scanf_s("%s", str);
p_str = &str[4]; *p_str = '@';
p_str = &str; printf("%s", p_str);
return 0; }