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