Q:

C program to Print Floyd’s triangle using For Loop

0

Write a C program to Print Floyd’s triangle using For Loop. Here’s simple C program to Print Floyd’s triangle using For Loopp in C Programming Language.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Here is source code of the C program to Print Floyd’s triangle using For Loop. The C program is successfully compiled and run(on Codeblocks) on a Windows system. The program output is also shown in below.


SOURCE CODE : :

/*  C program to Print Floyd’s triangle using For Loop  */

#include<stdio.h>

int main(){

  int i,j,r,k=1;

  printf("Enter the range: ");
  scanf("%d",&r);

  printf("\nFLOYD'S TRIANGLE :: \n\n");
  for(i=1;i<=r;i++){
      for(j=1;j<=i;j++,k++)
           printf(" %d",k);
      printf("\n");
  }

  return 0;
}

Output :


/*  C program to Print Floyd’s triangle using For Loop  */

Enter the range: 10

FLOYD'S TRIANGLE ::

 1
 2 3
 4 5 6
 7 8 9 10
 11 12 13 14 15
 16 17 18 19 20 21
 22 23 24 25 26 27 28
 29 30 31 32 33 34 35 36
 37 38 39 40 41 42 43 44 45
 46 47 48 49 50 51 52 53 54 55

Process returned 0

Above is the source code for C program to Print Floyd triangle using For Loop which is successfully compiled and run on Windows System.The Output of the program is shown above .

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C program to print Pascal triangle using For Loop... >>