11 lines
85 B
C
11 lines
85 B
C
#include <stdio.h>
|
|
|
|
void fred(void)
|
|
{
|
|
printf("yo\n");
|
|
}
|
|
|
|
fred();
|
|
|
|
void main() {}
|