100% c prog patterns using for loops

// program to print patterns using for loops
#include <stdio.h>
void main()
{
    int   i,j;
    for(i=1;i<=4;i++)
    {
        for(j=1;j<=i;j++)
        {
            printf("%2d",j);
        }
        printf("\n");
   
    }
}
   ఔట్పుట్ తెర 
 1
 1 2
 1 2 3
 1 2 3 4

----------------------------------
// program to print patterns usinf for loops
#include <stdio.h>
void main()
{
    int   i,j,n;
    printf("\nenter no of rows:");
    scanf("%d",&n);
    for(i=n;i>=1;i=i-1)
    {
        for(j=1;j<=i;j++)
        {
            printf("%2d",j);
        }
        printf("\n");
   
    }
}
       ఔట్పుట్ తెర 

enter no of rows:5
 1 2 3 4 5
 1 2 3 4
 1 2 3
 1 2
 1
-------------

#include <stdio.h>
void main()
{
    int   i,j,n;
    printf("\nenter no of rows:");
    scanf("%d",&n);
    for(i=n;i>=1;i=i-1)
    {
        for(j=i;j<=n;j++)
        {
            printf("%2d",i);
        }
        printf("\n");
   
    }
}
ఔట్పుట్ తెర 
   enter no of rows:5
 5
 4 4
 3 3 3
 2 2 2 2
 1 1 1 1 1

కామెంట్‌లు

ఈ బ్లాగ్ నుండి ప్రసిద్ధ పోస్ట్‌లు

100% C prog to write content into a file and then read it back onto the console

Spic macay

శ్రీరస్తు.. రామలింగ 18-1-24 (సూరసాని వారి ఆహ్వానము)