C C++ JAVA
Showing posts with label
Break Keyword in C
.
Show all posts
Showing posts with label
Break Keyword in C
.
Show all posts
Monday, 23 February 2015
Break Keyword in C
#include<stdio.h>
#include<conio.h>
main()
{
int i=0,Br;
clrscr();
printf("\n Which Value You Want To Break");
scanf("%d",&Br);
for(i=0;i<100;i++)
{
printf("\n%d.. SSI Education",i);
if(i==Br)
break;
}
getch();
}
Older Posts
Home
Subscribe to:
Posts (Atom)