Skip to content

Instantly share code, notes, and snippets.

@Rahajustone
Last active August 29, 2015 13:57
Show Gist options
  • Save Rahajustone/9631924 to your computer and use it in GitHub Desktop.
Save Rahajustone/9631924 to your computer and use it in GitHub Desktop.
/*scanf en iyi kulanişi ve bazi zamnada mantiksala olarak az belek kulanişi*/
#include <stdio.h>
int main(void)
{
int i;
printf("lutfen 1 16 kadar değerleri giriniz:");
i=0;
while(i<=16)
{
scanf("%d\t",&i);// lutfen satir olarak girin 16 tane değer ve sonra enter basin
++i;
printf("%d",i);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment