write a program whose output will be-
1
12
123
1234
Answer Posted / abc_efg
#include<iostream.h>
#include<conio.h>
main()
{
{
for(i=1;i<=4;i++)
{cout<<"\n"
}
for (j=1;j<=4;j++)
}
return 0;
}
| Is This Answer Correct ? | 5 Yes | 7 No |
Post New Answer View All Answers
write a c program to find the sum of five entered numbers using an array named number
What is the explanation for prototype function in c?
Write a program to check palindrome number in c programming?
How many bytes are occupied by near, far and huge pointers (dos)?
write an algorithm to display a square matrix.
What is the use of getch ()?
What is #error and use of it?
Hi can anyone tell what is a start up code?
What is a protocol in c?
where are auto variables stored? What are the characteristics of an auto variable?
Can a pointer be static?
Explain the difference between malloc() and calloc() function?
What is substring in c?
Explain how can I remove the trailing spaces from a string?
What is the difference between typedef and #define?