[ create a new paste ] login | about

Link: http://codepad.org/yrc2S7Xv    [ raw code | output | fork ]

appunti2 - C, pasted on Apr 30:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int main (void)
{
  char c;
  for (c = '0'; c <= 'Z'; c++)
    {
      printf ("%c", c);
    }
  printf ("\n");
  return 0;
}


Output:
1
0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ


Create a new paste based on this one


Comments: