8 lines
115 B
C
8 lines
115 B
C
#include <stdio.h>
|
|
|
|
int what_have_we_here();
|
|
|
|
int main(void) {
|
|
printf("printing %d\n", what_have_we_here());
|
|
}
|