11 líneas
120 B
C
11 líneas
120 B
C
#include <stdio.h>
|
|
|
|
int test_func() {
|
|
return 99;
|
|
}
|
|
|
|
int main() {
|
|
int result = test_func();
|
|
return result;
|
|
}
|