Skip to content

Instantly share code, notes, and snippets.

@kylelk
Created August 10, 2013 06:07
Show Gist options
  • Save kylelk/6199284 to your computer and use it in GitHub Desktop.
Save kylelk/6199284 to your computer and use it in GitHub Desktop.
ASCII_list.c
#include <stdio.h>
#define N 127
int main(void)
{
int n;
int c;
for (n=32; n<=N; n++) {
printf("%d: %c\n", n, n);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment