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

13 lines
149 B
C

#include "printlib.h"
// Declaration of a function with two parameters
int f(int x, bool y) {
return x;
}
int main(){
return 0;
}
// EXPECTED