12 lines
137 B
C
12 lines
137 B
C
#include "printlib.h"
|
|
|
|
// Forward declaration of function with a single parameter
|
|
|
|
int f(int x);
|
|
|
|
int main(){
|
|
return 0;
|
|
}
|
|
|
|
// EXPECTED
|