12 lines
132 B
C
12 lines
132 B
C
#include <stdio.h>
|
|
|
|
int myProg(int x) {
|
|
return x + 3;
|
|
}
|
|
|
|
int main() {
|
|
|
|
int y = 5;
|
|
printf("%d\n", myProg(y));
|
|
return 0;
|
|
} |