Skip to content

Instantly share code, notes, and snippets.

@dictav
Forked from Shinpeim/tex.c
Created July 31, 2012 08:13
Show Gist options
  • Save dictav/3214850 to your computer and use it in GitHub Desktop.
Save dictav/3214850 to your computer and use it in GitHub Desktop.
理系男子に朗報
#include <stdio.h>
int main(int argc, char *argv[]){
char chars[] = "TeX";
chars[0]--;
chars[1] += 'A' - 'a';
printf("%s",chars);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment