Skip to content

Instantly share code, notes, and snippets.

@prodhan
Created May 7, 2017 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prodhan/bcb91b365c96a4d69e7cc6c655da02f7 to your computer and use it in GitHub Desktop.
Save prodhan/bcb91b365c96a4d69e7cc6c655da02f7 to your computer and use it in GitHub Desktop.
This C Program for testing For loop
#include<stdio.h>
#include<conio.h>
int main(){
int i;
for(i=1; i<=10; i++)
{
printf("%d\n", i);
}
getch();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment