12 lines
133 B
C
12 lines
133 B
C
#include <stdio.h>
|
|
|
|
void two();
|
|
void three();
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
two();
|
|
printf("Library\n");
|
|
three();
|
|
}
|