C
This commit is contained in:
11
function.c
Executable file
11
function.c
Executable file
@ -0,0 +1,11 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void myFunc() {
|
||||
printf("My first Function!");
|
||||
|
||||
}
|
||||
|
||||
int main() {
|
||||
myFunc();
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user