void main()
{
int i=5;
printf("%d",i++ + ++i);
}
Answer Posted / basha
I have compiled this program. The ans is 12
| Is This Answer Correct ? | 45 Yes | 6 No |
Post New Answer View All Answers
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Where we use clrscr in c?
What is void main ()?
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.
What is a program flowchart?
What are the types of data files?
What are the types of functions in c?
What is %lu in c?
Explain how can a program be made to print the line number where an error occurs?
Why doesnt this code work?
What are structure types in C?
What is the method to save data in stack data structure type?
What is typedef example?
How do you determine whether to use a stream function or a low-level function?
Is printf a keyword?