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
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
what is uses of .net
write a program fibonacci series and palindrome program in c
What header files do I need in order to define the standard library functions I use?
Explain how can a program be made to print the name of a source file where an error occurs?
What is header file definition?
Is c call by value?
What is volatile c?
How can you be sure that a program follows the ANSI C standard?
Explain what is the difference between #include and #include 'file' ?
write a program in c language to print your bio-data on the screen by using functions.
code for find determinent of amatrix
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
What is a nested loop?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }