C
This commit is contained in:
12
w3school/function2.c
Normal file
12
w3school/function2.c
Normal file
@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int myProg(int x) {
|
||||
return x + 3;
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
||||
int y = 5;
|
||||
printf("%d\n", myProg(y));
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user