15 lines
161 B
C
15 lines
161 B
C
|
#include <stdio.h>
|
||
|
|
||
|
static inline int foo() {
|
||
|
return 2;
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
int ret;
|
||
|
|
||
|
ret = foo();
|
||
|
|
||
|
printf("Result: %d\n", ret);
|
||
|
return 0;
|
||
|
}
|