タグ

2009年11月22日のブックマーク (2件)

  • Chandler Project - Welcome

    Donate to Support the Chandler Project The Chandler Project is an open source project and it is only possible to maintain and further develop the project using generous support from individuals and companies. We have created exclusive pages for all our partners that contributed financially to the Chandler project like Free Spins No Deposit No Wager Limited and Betfair ES. Donations can be in the f

    decobisu
    decobisu 2009/11/22
    デザインかっこいい感じ
  • 絵で見てわかるC言語入門 - 第1章 - J

    そういえば勉強会の時に、「関数ポインタを返す関数はどうやって書くか?」みたいになったが、僕はそういう時は$ man signal して調べる派である。 http://www.linux.or.jp/JM/html/LDP_man-pages/man2/signal.2.html さて、C言語を使い慣れた人には常識ですが、C言語初心者にとって少し難しいのが、変数の宣言です。 例えば、初心者にとって、関数ポインタの配列へのポインタを返す関数の宣言を書くのはあまり簡単ではありません。 C言語の初心者には、以下のようなコードを書くのは少し難しく、また、C言語にあまり慣れていない人は、typedefなどを使ってしまいがちです。 typedef int (*func_t)(int); typedef func_t func_arr_t[10]; extern func_arr_t *x[40]; in

    絵で見てわかるC言語入門 - 第1章 - J