CAP/MiniC/TP06/tests/provided/basic-functions/test_fun_def01.c
2024-10-06 19:58:11 +02:00

16 lines
162 B
C

#include "printlib.h"
// Definition of function with a single parameter
int f(int x){
int y ;
y = 42;
return y;
}
int main(){
return 0;
}
// EXPECTED