7 lines
74 B
C
7 lines
74 B
C
|
void hello();
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
hello();
|
||
|
return 0;
|
||
|
}
|