main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / guest
58
| Is This Answer Correct ? | 32 Yes | 49 No |
Post New Answer View All Answers
What are variables and it what way is it different from constants?
Why cant I open a file by its explicit path?
What is the process to create increment and decrement stamen in c?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is ## preprocessor operator in c?
What is the condition that is applied with ?: Operator?
What are the 5 elements of structure?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Is it possible to initialize a variable at the time it was declared?
Are pointers really faster than arrays?
What is typedf?
What is sizeof int?
What is the use of getchar functions?
I need testPalindrome and removeSpace
#include
What is union in c?