/*
#include <stdio.h>

int main(void)
{
 char i;

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

 return 0;
}
*/

+ Recent posts