একই জিনিস বারংবার ( looping ) করতে হলে কি করতে হবে ?

Submitted by administrator on Mon, 01/02/2012 - 15:25

CLASS 7 - Doing the Same Thing Over and Over

In the previous lessons, you've learned the basics of the C program, several important C functions, standard I/O, and some useful operators. In this lesson you'll learn a very important feature of the C language—looping. Looping, also called iteration, is used in programming to perform the same set of statements over and over until certain specified conditions are met.

Three statements in C are designed for looping:

  •     The for statement
  •     The while statement
  •     The do-while statement



Summary
In this lesson you've learned the following:

  •     Looping can be used to perform the same set of statements over and over until specified conditions are met.
  •     Looping makes your program concise.
  •     There are three statements, for, while, and do-while, that are used for looping
  •     in C.
  •     There are three expression fields in the for statement. The second field contains the expression used as the specified condition(s).
  •     The for statement does not end with a semicolon.
  •     The empty for( ; ; ) statement can be used to form an infinite loop.
  •     Multiple expressions, separated by commas, can be used in the for statement.
  •     There is only one expression field in the while statement, and the expression is used as the specified condition.
  •     The while statement does not end with a semicolon.
  •     The while (1) statement can create an infinite loop.
  •     The do-while statement places its expression at the bottom of the loop.
  •     The do-while statement does end with a semicolon.
  •     The inner loop must finish first before the outer loop resumes its iteration in nested loops.


In the next lesson you'll learn about more operators used in the C language.
 

Related Items

মডুলার C প্রোগ্রামিং (Modular C Programming)

কেবল মাত্র একটি ফাংশন দিয়ে কোনো বড়ো জটিল সমস্যা সমাধানের চেষ্টা করা ভাল প্রোগ্রামিংয়ের পদ্ধতি নয়। সঠিক পদ্ধতি হ'ল সমস্যাটিকে কয়েকটি ছোট ছোট এবং সরল টুকরো করে ফেলা যাতে তা আরও বিশদে বোঝা যায় । তারপরে এই ছোট এবং সরল সমস্যাগুলি সমাধান করার জন্য ছোট ছোট ফাংশন ব্লক তৈরি করা এবং পরে সেগুলি নিয়মানুযায়ী সংযোজিত করা ।

Programming Style

Programming Style

In this section, I'd like to briefly highlight some points that will help you write clean programs that can easily be read, understood, and maintained.

Exercises : Answer the following Question

To help solidify your understanding of this hour's lesson, you are encouraged to answer the quiz questions and finish the exercises provided in the Workshop before you move to the next lesson.

Question and Answer

    Q Is the C preprocessor part of the C compiler?

    A No. The C preprocessor is not part of the C compiler. With its own line-oriented grammar and syntax, the C preprocessor runs before the compiler in order to handle named constants, macros, and inclusion of files.

Compiling Your Code Under Conditions

Compiling Your Code Under Conditions

You can select portions of your C program that you want to compile by using a set of preprocessor directives. This is useful, especially when you're testing a piece of new code or debugging a portion of code.