progrem to generate the following series
1
12
123
1234
12345
Answer Posted / srsabariselvan
int main()
{
int i,j;
for(i=1;i<=5;i++)
{
for(j=1;j<=i;j++)
{
printf("%d\t",j);
}
printf("\n");
}
return 0;
}
| Is This Answer Correct ? | 115 Yes | 27 No |
Post New Answer View All Answers
Can a file other than a .h file be included with #include?
what are the facialities provided by you after the selection of the student.
In C language what is a 'dangling pointer'?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is identifier in c?
Write a Program to find whether the given number or string is palindrome.
How is a null pointer different from a dangling pointer?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What are variables c?
Explain the process of converting a Tree into a Binary Tree.
What is getch() function?
Disadvantages of C language.
How do you view the path?
How do you write a program which produces its own source code as output?