とりあえずまともに書いたらこんな感じかな?? プログラム引数に文字列を指定すると、Base64文字列を出力してくれる。 ソース #include <stdio.h> #include <string.h> int main(int argc, char **argv) { char *w = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; unsigned char *p = argv[1], *buff; int i = 0, x = 0, l = 0; buff = (char *)malloc((strlen(p) * 4 / 3 + 3) & ~0x03 + 1); for (; *p; p++) { x = x << 8 | *p; for (l += 8; l >= 6; l -= 6) {