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
Is array name a pointer?
What is difference between structure and union in c programming?
What are the advantages and disadvantages of c language?
What is the difference between int main and void main?
How do I read the arrow keys? What about function keys?
What is cohesion in c?
Which is best book for data structures in c?
write a program for the normal snake games find in most of the mobiles.
What are the different categories of functions in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
What is include directive in c?
What is the use of pragma in embedded c?
What is a program flowchart?
What is an operator?
What is a void pointer in c?