IT系メモ

興味のあったことや、勉強したことなどをメモしていきます。

2005-07-08から1日間の記事一覧

メモ

void swap(struct club2 *x, struct club2 *y){ struct club2 temp = *x; *x = *y; *y = temp; } /*生年を昇順にソート*/ void sort (struct club2 data[], int n){ int k = n-1; int i,j; while(k >= 0){ for(i = 1, j= -1; i<= k; i++){ if(data[i - 1].ya…

Emacs

Emacsでバイナリファイルを開くには、[Alt]+[x]キーを押してから「hexl-find-file」と入力して[Enter]キーを押す。