CAP/MiniC/TP06/tests/provided/basic-functions/test_fun_def02.c

13 lines
149 B
C
Raw Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
// Declaration of a function with two parameters
int f(int x, bool y) {
return x;
}
int main(){
return 0;
}
// EXPECTED