#include<stdio.h>
void
main
()
{
const
char
*
p
=
"ssss"
;
char
*
q
=
0
;
q
=
p
;
ptintf
(
" %s"
,
q
);
}