16 lines
162 B
C
16 lines
162 B
C
#include "printlib.h"
|
|
|
|
// Definition of function with a single parameter
|
|
|
|
int f(int x){
|
|
int y ;
|
|
y = 42;
|
|
return y;
|
|
}
|
|
|
|
int main(){
|
|
return 0;
|
|
}
|
|
|
|
// EXPECTED
|