answersLogoWhite

0

What C program for display in triangle?

Updated: 8/17/2019
User Avatar

Santhoshyadav

Lvl 1
14y ago

Best Answer

Please visit http://talentsealed.blogspot.com/2009/10/to-display-triangle-using-c-programming.html for the answer. Please let me know your comments

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What C program for display in triangle?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write c programs to display 10 line biodata?

A C++ program can be used to write C programs that will display 10 lines of biodata. Many types of C programming can be written with a C++ program.


How do you write a C plus plus program that will display the first 10 positive prime numbers?

By learning how to program on C+.


C program to find area of a triangle?

find the area of abc a[2,3] c[6,0]


Do I need a C plus plus program to print PASCAL's triangle?

No.


For loop program turbo c making a right triangle?

yes


Write a program which takes the temperature in farhenheightthe program should display the farhenheight temperature as well as centigrade C equals?

Write a program which takes the temperature in farhenheight.the program should display the farhenheight temperature as well as centigrade. C= (f-32)*5/9


Write a program in c to display welcome to the world of c sharp?

#include<stdio> #include<conio> class program { namespace display { console.println("write your text"); } } correct me if im wrong im a new programmer.


Write a program in c to display isosceles triangle dy digit?

#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("\n Enter the 3 sides of Triangle: "); scanf("%d %d %d",&a,&b,&c); printf("\nYour entered side is a=%d b=%d c=%d",a,b,c); if(a==b && b==c && a==c) { printf("\n EQUILATERAL TRIANGLE.");//All sides equal in case of Equilateral triangle } else if(a!=b&&b!=c) printf("\n SCALENE TRIANGLE."); //All sides unequal else printf("\n ISOCELES TRIANGLE."); //At least 2 sides equal getch(); }


How do you display semi colon without using semi colon in a c program?

main() { if(printf("%c",59)) }


Program to display multiplication of two matrix?

The matrix multiplication in c language : c program is used to multiply matrices with two dimensional array. This program multiplies two matrices which will be entered by the user.


Write a program in COBOL to find the largest of N number?

identification division. program-id. greatest. environment division. data division. working-storage section. 77 a pic 999. 77 b pic 999. 77 c pic 999. procedure division. greatest. display "ENTER THE THREE NUMBERS:". accept a. accept b. accept c. if a > b and a > c display a "is greatest" else if b > c display b "is greatest" else display c "is greatest". display " thank you". stop run.


How do you implement a program to display the Indian flag with colors using c graphics?

ANSI/ISO C does not and never has done graphics.