This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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"); |
NewerOlder