7 lines
87 B
C
7 lines
87 B
C
extern int myc(void);
|
|
extern int mycxx(void);
|
|
int main()
|
|
{
|
|
return myc() + mycxx();
|
|
}
|