×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Sum of its Individual Digits Repeatedly - MAKAUT / WBUT MCA 2011 Differentiate between do-while and while statements WBUT MCA 2012
Write a c Programming to create a binary pyramid. - MAKAUT / WBUT MCA 2012 - C Language
1786    Arnab De    08/04/2020

Write a C program to print the above pyramid.

First analysis the pattern,

  1. each and every line start with 1.
  2. After printting each time value is inverse.
  3. Print [Total No. of row - current no of row] space before print any number
  4. Every row have [(row * 2) - 1] number of column.

softetechnologies
void main()
{
	int r,c,s,n=4,v=1;
	clrscr();
	for(r=1;r<=n;r++)
	{
		for(s=1;s<=n-r;s++)
		{
			printf(" ");
		}
		for(c=1;c<=(r*2)-1;c++)
		{
			printf("%d",v);
			v=!v; 	//	NOT Operation on v
					//	Inverse the value of v
		}
		printf("\n");
		v=1;
	}
	getch();
}
softetechnologies

Output:

pyramid Pattern C Programming
Sum of its Individual Digits Repeatedly - MAKAUT / WBUT MCA 2011 Differentiate between do-while and while statements WBUT MCA 2012
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
Everything comes to us if we create the capacity to receive it.
Rabindranath Tagore
827
79.66
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     53881
25/06/2018     44952
01/01/2018     43526
28/06/2017     41090
02/08/2017     40064
01/08/2017     34112
06/07/2017     33944
15/05/2017     33189
11/09/2018     29998
14/07/2017     29659
softetechnologies