Skip to content

Instantly share code, notes, and snippets.

@cagataycali
Last active November 28, 2015 12:23
Show Gist options
  • Save cagataycali/4157e458b44bbd0e82e1 to your computer and use it in GitHub Desktop.
Save cagataycali/4157e458b44bbd0e82e1 to your computer and use it in GitHub Desktop.
Birden yüze kadar olan tek sayıları toplayan ekrana yazan c programı ( for ile )
#include <stdio.h>
/*
1'den 100'e kadar olan tek sayıları toplayıp ekrana yazacağız.
*/
int main(void)
{
int toplam = 0;
for (int i = 0; i <= 100; i = i + 1 )
{
toplam += ++i;
printf("Sayı : %d , toplamı : %d \n",i,toplam );
}
printf("Toplam: %d \n",toplam );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment