Thursday 11 April 2013

How to write a program in C using for Loop?


For loop is the most popular looping structure in C programming language. It does required number of repetitions for the execution of block of codes. The For Loop allows us to specify three things about a loop in a single line, which are initialise counter, test counter and increment counter. Initialise counter sets a loop counter to an initial value, test counter test the loop counter to determine whether it's value has reached the number of repetitions desired and increment counter increase the value of loop counter each time the program segment within the loop has been executed. Here I have illustrated How to write a program in C using for Loop.

The general form of for statement is as follows.


for(initialise counter; test counter; increment counter)
{
block of codes
}


The diagram for the for loop is as follows.

write a program in C using for Loop
For-Loop

For example following is the program code in C to calculate simple interest. 


/*calculation of simple interest for 3 sets of p,n and r */
#include <stdio.h>
 int main()
{
int p,n,count;
float r,si;
for(count=1; count<=3; count=count+1)
 {
 printf("Enter values of p,n and r");
 scanf("%d %d%f", &p,&n,&r);
 si=p*n*r/100;
printf(simple interest=%f\n",si);
 }
 return 0;
 }


You can view the following other posts

No comments:

Post a Comment

Powered by Blogger.

مساحات للبيع

اعلان

معلومات عنا

إعلانات

إجمالي مرات مشاهدة الصفحة

Search This Blog

اخبار عالمية

مقالات

أخبار

أخر المعلقين

فيديوهات

سلايدر

Tags

Contact us

متتبعون المدونة

Categories

Advertisement

40% Off

Translate

صور متنوعة

Facebook

Facebook users

Recent in Mens

FlatBook

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum rhoncus vehicula tortor, vel cursus elit. Donec nec nisl felis. Pellentesque ultrices sem sit amet eros interdum, id elementum nisi ermentum.Vestibulum rhoncus vehicula tortor, vel cursus elit. Donec nec nisl felis. Pellentesque ultrices sem sit amet eros interdum, id elementum nisi fermentum.




Comments

Contact Us

Name

Email *

Message *