kratos
I AM THE GOD OF WAR : NONE SHOULD DEFINE ME.
Saturday, March 6, 2010
PRINT SERIES (VARIABLE)
WAP to print series from start to end using do-while
loop
void main ()
{
int a,b;
clrscr ();
printf ("Enter Start: ");
scanf ("%d",&a);
printf ("Enter End: ");
scanf ("%d",&b);
do
{
printf ("%d\n",a);
a++;
}
while (a<=b);
getch ();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Followers
Blog Archive
▼
2010
(30)
►
May
(3)
▼
March
(27)
NUMBERS DIVIDED BY 7
ODD SERIES
SQUARE & CUBE
SKIP 5 & 7
SERIES 20 TO 1
PRINT SERIES (VARIABLE)
PRINT STARS
TABLE OF 5
PASSWORD VERIFICATION
VALUE OF DATA TYPE
SUM,SUB,PRODUCT,DIVISION
SUM OF ARRAY
SWAP NUMBERS
FIND THE SUM OF DIGIT THREE Numbers
Factorial Function In C
Basic example showing constants usage in C
calculate the power in watts
Progam that gives length of side of a Triangle
Ohms law example In C
Print a double pyramid
C Program to calcuate interest and total amount at...
REVERSE NUMBER
Program for conversion of Decimal to Roman Number
Matrix Multiplication
2d example insertion sort
c programme
c programme
About Me
kratosprogrammer
I am engineer [information technology]
View my complete profile
No comments:
Post a Comment