If statement inside for loop : If « Language Basics « C / ANSI-C






If statement inside for loop

  
#include <stdio.h>
#include <conio.h>

int main(void)
{
  int i;
  char ch;

  /* display all numbers which are multiples of 6 */
  for(i = 5; i < 10000; i++) {
    if(!( i % 6 )) {
      printf("%d, more number? (Y/N)", i);
      
      ch = getche();
      
      if(ch == 'N') 
           break; /* stop the loop */
      
      printf("\n");
    }
  }

  return 0;
}

           
       








Related examples in the same category

1.A simple example of the if statementA simple example of the if statement
2.Using ifs to decide on a discount
3.IF statement 3
4.If else
5.More statement in if else
6.If else if and else
7.More if else
8.Block if else statementBlock if else statement
9.Use two if statements
10.Use result as the if condition
11.Use user input as the if condition
12.Use int as if condition
13.If statement for different choice
14.Use calculation in if statement
15.if command
16.Use if else
17.Use statement inside if else
18.Move more statements into if and else
19.If else statement inside a for loop