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