0% found this document useful (0 votes)
169 views5 pages

Marvellous Logic Building Asignment - 10

Uploaded by

Saurabh Dhoke
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
169 views5 pages

Marvellous Logic Building Asignment - 10

Uploaded by

Saurabh Dhoke
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Marvellous Logic Building Assignment : 10

Logic Building Assignment : 10

1. Accept number of rows and number of columns from user and display
below pattern.

Input : iRow = 4 iCol = 3

Output : * * *
* * *
* * *
* * *

Program Layout :

#include<stdio.h>

void Pattern(int iRow, int iCol)


{
// Logic
}

int main()
{
int iValue1 = 0, iValue2 = 0;

printf(“Enter number of rows and columns”);


scanf(“%d %d”,&iValue1, &iValue2);

Pattern(iValue1, iValue2);

return 0;
}

Piyush Khairnar - 7588945488 आ Technical सं र करतो !!! ©Marvellous Infosystems Page 1












म्ही

स्का

Marvellous Logic Building Assignment : 10

2. Accept number of rows and number of columns from user and display
below pattern.

Input : iRow = 4 iCol = 3

Output : 1 2 3
1 2 3
1 2 3
1 2 3

Program Layout :

#include<stdio.h>

void Pattern(int iRow, int iCol)


{
// Logic
}

int main()
{
int iValue1 = 0, iValue2 = 0;

printf(“Enter number of rows and columns”);


scanf(“%d %d”,&iValue1, &iValue2);

Pattern(iValue1, iValue2);

return 0;
}

Piyush Khairnar - 7588945488 आ Technical सं र करतो !!! ©Marvellous Infosystems Page 2












म्ही

स्का

Marvellous Logic Building Assignment : 10

3. Accept number of rows and number of columns from user and display
below pattern.

Input : iRow = 3 iCol = 5

Output : 5 4 3 2 1
5 4 3 2 1
5 4 3 2 1

Program Layout :

#include<stdio.h>

void Pattern(int iRow, int iCol)


{
// Logic
}

int main()
{
int iValue1 = 0, iValue2 = 0;

printf(“Enter number of rows and columns”);


scanf(“%d %d”,&iValue1, &iValue2);

Pattern(iValue1, iValue2);

return 0;
}

Piyush Khairnar - 7588945488 आ Technical सं र करतो !!! ©Marvellous Infosystems Page 3



















म्ही

स्का

Marvellous Logic Building Assignment : 10

4. Accept number of rows and number of columns from user and display
below pattern.

Input : iRow = 3 iCol = 4

Output : * # * #
* # * #
* # * #

Program Layout :

#include<stdio.h>

void Pattern(int iRow, int iCol)


{
// Logic
}

int main()
{
int iValue1 = 0, iValue2 = 0;

printf(“Enter number of rows and columns”);


scanf(“%d %d”,&iValue1, &iValue2);

Pattern(iValue1, iValue2);

return 0;
}

Piyush Khairnar - 7588945488 आ Technical सं र करतो !!! ©Marvellous Infosystems Page 4



















म्ही

स्का

Marvellous Logic Building Assignment : 10

5. Accept number of rows and number of columns from user and display
below pattern.

Input : iRow = 3 iCol = 4

Output : 1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4

Program Layout :

#include<stdio.h>

void Pattern(int iRow, int iCol)


{
// Logic
}

int main()
{
int iValue1 = 0, iValue2 = 0;

printf(“Enter number of rows and columns”);


scanf(“%d %d”,&iValue1, &iValue2);

Pattern(iValue1, iValue2);

return 0;
}

Piyush Khairnar - 7588945488 आ Technical सं र करतो !!! ©Marvellous Infosystems Page 5













म्ही

स्का

You might also like