print following while X is entered by user | CTechnotips

Question : Print Following while X is entered by user .

Here X=4

0001000
0011100
0111110
1111111

Ans :

#include<stdio.h>
#include<conio.h>
void main()
{
    int i,j,no;

    clrscr();

    printf("\n Please Enter No : - ");
    scanf("%d",&no);

    printf("\n\n ");
    for(i=0;i<no;i++)
    {
        for(j=0;j<no;j++)
        {
            if(j>=no-1-i)
                printf("1");
            else
                printf("0");
        }
        for(j=1;j<no;j++)
        {
            if(j<=i)
                printf("1");
            else
                printf("0");
        }
        printf("\n ");
    }

    getch();
}

 

friends Help me i want to print this type of pattern | CTechnotips

Problem : friends Help Me i want to print this type of pattern:

*
..*
....*
......*
........*
..........*
............*
..............*
.................* 

where dot showing the space

Solution :

#include<stdio.h>
#include<conio.h>
void main()
{
    int i=0,no=0,j=0;
    clrscr();
    printf("\nPlease Enter The Number : - ");
    scanf("%d",&no);
    for(i=0;i<no;i++)
    {
        printf("\n");
        for(j=0;j<no;j++)
        {
            if(i==j)
            printf("*");
            else
            printf(" ");
        }
    }
    getch();
}

can any one help me for this program | CTechnotips

Problem :

Can any one help me for this program.

1 1
1 2 2 1
1 2 3 3 2 1
1 2 3 4 4 3 2 1 

plz help me soon..

Solution :


#include<stdio.h>
#include<conio.h>
void main()
{
    int i=0,j=0,no=0;
    clrscr();
    printf("\n Please Enter The Number : - ");
    scanf("%d",&no);
    for(i=1;i<=no;i++)
    {
        printf("\n");
        for(j=1;j<=i;j++)
        {
            printf("%d",j);
        }
        for(j=no;j>0;j--)
        {
            if(j<=i)
            printf("%d",j);
        }
    }
    getch();
}