i have a problem with how to use c programming keywords while doing programming
can you post me some solutions with these keywords
as with their uses and meanings.

Recommended Answers

All 7 Replies

doing looping,using with do while is promblems with me
so can you give me full hence about it by which i can be perfect in it.

what is the uses of continue and break keywords.

please give idea about to write simple programming in c as i am beginners for c language

start simple programming such as helloworld,addition of 2 numbers,factorial,sum of n numbers etc

break- this statement is used to exit from loop.
eg:

for(i=0;i<10;i++)
{
printf("*");
if(i==5)
break;
}


      in above program if 'if'condition satisfies then loop is breaked.

continue- when this statement is executed, loop starts from first.

It seems like you don't even have a book or thorough tutorial to work with, which will drastically hinder your progress. I'd suggest buying a book and working through it, as most people won't be inclined to teach you when it seems like you aren't interested in putting any effort into it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.