12 lines
141 B
C
12 lines
141 B
C
#include "printlib.h"
|
|
|
|
// Forward declaration of function with two parameters
|
|
|
|
int f(int x, bool y);
|
|
|
|
int main(){
|
|
return 0;
|
|
}
|
|
|
|
// EXPECTED
|