1
#include
<stdio.h>
2
3
int
main(
int
argc,
char
* argv[]){
4
char
*ptr =
"A"
;
5
*ptr =
'R'
;
6
printf(
"
%c
\n
"
, ptr);
7
return
0
;
8
}
9