/*
#include <stdio.h>

int main(void)
{
 char i;

 for (i='A' ; i<='Z' ; i++)
  printf("%c", i);
 printf("\n");

 return 0;
}
*/

+ Recent posts