added string2hex prog (usefull for wep key)
[my-code/beginners.git] / asci.c
1 #include <stdio.h>
2
3 main()
4 {
5 int i;
6 for (i=0; i<=530; ++i)
7         {
8         printf("%d = %c\n",i, (char)(i));
9         }
10 }