- 140 名前:デフォルトの名無しさん mailto:sage [2007/05/14(月) 18:19:45 ]
- // aaa.h
#ifndef test int test(int i){return i + 10;} #endif // bbb.c #include "aaa.h" int test ( int i ); int foo(int i){return test(i)+10;} // main.c #include <stdio.h> #include "aaa.h" void foo(int i); int main(void){printf("%d",test(i)+foo(i);}
|

|