3 Commits

Author SHA1 Message Date
64b5cb88ae foo örneği yazıldı 2025-10-06 23:56:54 +03:00
Mert Gör
dd4d499ae4 update 2025-10-03 08:09:40 +03:00
e7ac62ab1b deleted old examples 2025-10-02 14:46:46 +03:00
4 changed files with 7 additions and 29 deletions

View File

@@ -1,7 +1,7 @@
#include <stdio.h>
#include "foo.h"
int foo() {
printf("I am foo\n");
return 0;
}

View File

@@ -1,11 +1,8 @@
#include "myprint.h"
#include <stdio.h>
#include "foo.h"
int main() {
myprint();
foo();
return 0;
}

View File

@@ -1,13 +0,0 @@
#include <stdio.h>
#include "myprint.h"
int myprint() {
int a = 10, b = 20;
printf("a = %d, b = %d\n", a, b);
printf("a = %d, b = %d\n", b, a);
printf("%d%d\n", a, b);
return 0;
}

View File

@@ -1,6 +0,0 @@
#ifndef MYPRINT_H
#define MYPRINT_H
int myprint();
#endif