main()
{
int i = -3,j=2,k=0,m;
m= ++i || ++j && ++k;
printf("%d%d%d",i,j,k,m);
}
Answer Posted / tarkibitact
-2301
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is equivalent to ++i+++j?
What is the purpose of sprintf?
Explain how do you declare an array that will hold more than 64kb of data?
Explain what is the benefit of using enum to declare a constant?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Give me the code of in-order recursive and non-recursive.
Why is c so powerful?
Explain what is the difference between #include and #include 'file' ?
what is recursion in C
What are the types of variables in c?
Should I learn data structures in c or python?
How many levels of pointers can you have?
How do you do dynamic memory allocation in C applications?
What is the difference between a free-standing and a hosted environment?
What is a shell structure examples?