This commit is contained in:
2024-02-27 16:33:20 +03:00
parent 3a67cb72cc
commit 0ab1badbbf
6 changed files with 76 additions and 0 deletions

9
DeitelC/HelloPrint.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
void HelloWorld(char print[]) {
printf("%s\n", print);
}
int main(void) {
HelloWorld("print");
}