Skip to content

Instantly share code, notes, and snippets.

@zuigon
Created August 29, 2010 23:45
Show Gist options
  • Save zuigon/556822 to your computer and use it in GitHub Desktop.
Save zuigon/556822 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char const *argv[]){
int i=1;
for(;i<argc; ++i){
if (argv[i][1] == '\0'){
char t = (tolower(argv[i][0])-'a'+1);
if (t>0 && t<='z')
printf("%s = %d\n", argv[i], t);
}
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment