write a program whose output will be-
1
12
123
1234
Answer Posted / shrikantauti
main()
{
int i;
for (i=1;i<=4;i++)
{
printf(i);
}
}
| Is This Answer Correct ? | 4 Yes | 28 No |
Post New Answer View All Answers
What is array of pointers to string?
What is indirection? How many levels of pointers can you have?
What is a const pointer?
Is c a great language, or what?
How reliable are floating-point comparisons?
Explain what is page thrashing?
What is a pointer in c?
what are # pragma staments?
What does == mean in texting?
What is wrong in this statement?
What is dynamic dispatch in c++?
What is the difference between void main and main in c?
write a program to create a sparse matrix using dynamic memory allocation.
What is the use of a semicolon (;) at the end of every program statement?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?