From b8f22cf5bd3923a5f5991dac4f09cf3599f834db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Tue, 18 Mar 2025 14:02:23 +0300 Subject: [PATCH] =?UTF-8?q?toplama=20=C3=B6rne=C4=9Fi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- c-basic/toplama.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 c-basic/toplama.c diff --git a/c-basic/toplama.c b/c-basic/toplama.c new file mode 100644 index 0000000..6bd7e22 --- /dev/null +++ b/c-basic/toplama.c @@ -0,0 +1,13 @@ +#include + +int main() +{ + int a , b , c; + + a = 10; + b = 20; + c = a + b; + printf("C = %d", c); + + return 0; +}