11 lines
88 B
C
11 lines
88 B
C
extern int b();
|
|
extern int c();
|
|
extern int d();
|
|
|
|
int main()
|
|
{
|
|
c();
|
|
b();
|
|
d();
|
|
}
|