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
How a string is stored in c?
Why do we use int main instead of void main in c?
write a program to print largest number of each row of a 2D array
How is null defined in c?
Explain about C function prototype?
What are the 32 keywords in c?
What are integer variable, floating-point variable and character variable?
how do you execute a c program in unix.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What are valid operations on pointers?
What are the types of pointers in c?
Compare interpreters and compilers.
Explain a file operation in C with an example.
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is stack in c?