#include <syslib.h>
#include <string.h>
main()
{
char
*s=
"Golden Global View"
;
clrscr();
memset
( s,
'G'
,6 );
printf
(
"%s"
,s );
getchar
();
return
0;
}