#include<
stdio.h
>
void
main()
{
char
i;
for(
i=
’
A’
;i
<=
’
Z’
;i
++
)
{
printf
(
“%c\
t”
,i
);
}
}