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