Код№1

This commit is contained in:
bankaSTR 2024-12-03 03:57:54 +04:00
parent a57978ddae
commit e7dd17a3bf

View File

@ -0,0 +1,11 @@
#include <stdio.h>
void project1();
int main() {
project1();
}
void project1() {
printf("Hello!");
}