Skip to content

Instantly share code, notes, and snippets.

View GokselKUCUKSAHIN's full-sized avatar
📚
Do you know there's a library for that!

Göksel Küçükşahin GokselKUCUKSAHIN

📚
Do you know there's a library for that!
View GitHub Profile
@GokselKUCUKSAHIN
GokselKUCUKSAHIN / Project_11.c
Created November 13, 2017 22:28
C-Programlama I (Project_10-20)
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int N,i=1,f=1;
printf("Kac faktoriyel hesaplancak -> "); scanf("%d",&N);
while (i<=N)
f*=i++;
printf("%d!=%d faktoriyel\n",N,f);
@GokselKUCUKSAHIN
GokselKUCUKSAHIN / Project_01.c
Last active November 13, 2017 22:24
C-Programlama I (Project_1-10)
#include <stdio.h> //printf komutu için gerekli kütüphane.
#include <stdlib.h> //system("PAUSE"); için gerekli kütüphane.
int main(void)
{
printf("Merhba Dunya!\n"); // (\n satır atlamaya yarıyor.)
printf("deneme1"); /* YORUM SATIRLARI */
printf("Test 1\n");
system("PAUSE");