13
examples/tests/function_no_params_test.c
Archivo normal
13
examples/tests/function_no_params_test.c
Archivo normal
@@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int say_hello() {
|
||||
printf("Hello from function!\n");
|
||||
return 42;
|
||||
}
|
||||
|
||||
int main() {
|
||||
printf("Before function call\n");
|
||||
int result = say_hello();
|
||||
printf("After function call, result = %d\n", result);
|
||||
return 0;
|
||||
}
|
||||
Referencia en una nueva incidencia
Block a user