You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
167 B

extern int circlemod1 (void);
extern int circlemod2 (void);
int
circlemod3 (void)
{
return 3;
}
int
circlemod3a (void)
{
return circlemod1 () + circlemod2 ();
}