main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}
Answer Posted / mayur dharmik
output
-220
i.e,
i=-2, j=2, k=0.
it will print only 1st three value.
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
What does struct node * mean?
Why can’t we compare structures?
What are the rules for identifiers in c?
Where in memory are my variables stored?
What is array within structure?
What does a function declared as pascal do differently?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
what is stack , heap ,code segment,and data segment
What is FIFO?
Where are some collections of useful code fragments and examples?
What do you mean by Recursion Function?
Is it better to use malloc() or calloc()?
Is a house a mass structure?
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.
When is the “void” keyword used in a function?