9 lines
89 B
C
9 lines
89 B
C
#include "stdio.h"
|
|
|
|
const char* foo();
|
|
int main()
|
|
{
|
|
printf("%s", foo());
|
|
return 0;
|
|
}
|