Answer Posted / karthickumar
#include<stdio.h>
#include<conio.h>
void main()
{
int i,j;
clrscr();
for(i=1;i<=6;i++)
{
for(j=1;j<=i;j++)
{
printf("%d",j);
}
printf("\n");
}
getch()
}
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
What is return in c programming?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
What is the difference between declaring a variable and defining a variable?
Where static variables are stored in c?
What is a dynamic array in c?
What is the use of typedef in c?
What is the use of in c?
What is meant by type casting?
Are enumerations really portable?
Can we assign string to char pointer?
how to build a exercise findig min number of e heap with list imlemented?
How do c compilers work?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What is string length in c?