Ask Question - Get Answer

1 Ans Write a C program to print Floyd Triangle

Asked by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:25 PM at (Education Tutorials)

Please log in to answer, like and save
0
Save 0

<<< Previous
Log in to Answer Next >>>

Answer(s):

C program to print Floyd Triangle


#include<stdio.h>

int main()

{

    int i, j, n, number=1;

    scanf("%d", &n);

    for(i=0; i<n; i++)

    {

        for(j=0; j<=i; j++)

        {

            printf("%d ", number);

            number++;

        }

        printf("\n");

    }

    return 0;

}


Answered by AL MaMun (4 Golds) Friday, 31 Jul 2020, 04:25 PM

Please log in to Upvote, Downvote and Report
           

Related Q/A:

1 Ans Write a C program to implement x power n using recursion

2 Ans Train Location Message TR Train_Code and Send to 16318 Example: TR 705 Send to 16318

1 Ans Write a C program to check a Prime number

1 Ans Write a C program to Find Armstrong Number series upto a Number

1 Ans Write a C++ program for BigMod math

1 Ans A C program to input and display an Array

2 Ans BPSC aptitude test all programs solutions here

1 Ans Write a C program to check a perfect number

1 Ans Write a C program to reverse a number

1 Ans Write a C program to find nth Fibonacci number