13 lines
149 B
C
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
|