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
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 does it mean when the linker says that _end is undefined?
What is the difference between array_name and &array_name?
What is c++ used for today?
What are pointers?
Explain what does the format %10.2 mean when included in a printf statement?
What is a good way to implement complex numbers in c?
the question is that what you have been doing all these periods (one year gap)
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Explain the difference between structs and unions in c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Is array a primitive data type in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is structure padding in c?