first commit

This commit is contained in:
aOK 2024-08-19 13:52:05 +03:00
commit e2c095af41
34 changed files with 667 additions and 0 deletions

9
c/example.c Normal file
View file

@ -0,0 +1,9 @@
#include "example.h"
int add(int a, int b) {
return a + b;
}
void print_message() {
printf("Hello from C!\n");
}

9
c/example.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef EXAMPLE_H
#define EXAMPLE_H
#include <stdio.h>
int add(int a, int b);
void print_message();
#endif // EXAMPLE_H