Skip to content

Instantly share code, notes, and snippets.

@raziyeaydin
Created March 11, 2013 23:02
Show Gist options
  • Save raziyeaydin/5138732 to your computer and use it in GitHub Desktop.
Save raziyeaydin/5138732 to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main(){
int a;
int b;
int i;
printf("alt siniri giriniz: \n");
scanf("%d",&a);
printf("ust siniri giriniz:\n");
scanf("%d",&b);
printf("\n");
for(i=a;i<=b;i++){
printf("%d ",i);
}
printf("\n\nBu kadar !");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment