×
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
1503    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.
Albert Einstein
I have no special talent. I am only passionately curious.
Albert Einstein
1864
69.48
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     50613
25/06/2018     42600
01/01/2018     41783
28/06/2017     39564
02/08/2017     38354
01/08/2017     32578
06/07/2017     32274
15/05/2017     31730
14/07/2017     27864
11/09/2018     27601
softetechnologies