10 lines
86 B
C
Raw Normal View History

void OneFunc();
void TwoFunc();
int main()
{
OneFunc();
TwoFunc();
return 0;
}