12344321
123 321
12 21
1 1 how i print this program??
Answer Posted / sunitha
for(i=1;i<=5;i++)
{
for(j=1;j<=i;i++)
{
for(k=1;k<=j;k++)
printf("%d",k);
k--;
printf("%d",k);
}
}
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How many keywords are there in c?
What is call by value in c?
What is the difference between printf and scanf in c?
Which is best book for data structures in c?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is a sequential access file?
What is the difference between the = symbol and == symbol?
In a switch statement, explain what will happen if a break statement is omitted?
What functions are in conio h?
What is getch() function?
Explain what is the advantage of a random access file?
What is a static variable in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Why do we use null pointer?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference