18 lines
161 B
C
18 lines
161 B
C
#include <stdio.h>
|
|
int nothing ()
|
|
|
|
{
|
|
int x = 3 ;
|
|
return x ;
|
|
}
|
|
|
|
|
|
int main ()
|
|
|
|
{
|
|
int y ;
|
|
y = nothing () ;
|
|
printf ("hello\n") ;
|
|
return 0;
|
|
}
|