個人的なメモ

めもめも.

2017-04-01から1ヶ月間の記事一覧

関数ポインタ_途中

#include <stdio.h> void HOGE(){ printf("HOGE\n"); } int FUGA(){ printf("FUGA\n"); return 1; } int main(){ void (*func)() = HOGE; func(); void (*func2)() = NULL; func2 = HOGE; func2(); int (*func3)() = FUGA; func3(); return 0; }#include <stdio.h> void HOGE()</stdio.h></stdio.h>…