what is the value of b
if a=5;
b=++a + ++a
Answer Posted / ranvir kumar singh
Answer would be 13
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Is javascript written in c?
When do we get logical errors?
Why we use conio h in c?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What are loops 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 methods in c?
c program to compute AREA under integral
What are predefined functions in c?
what does static variable mean?
What are header files? What are their uses?
What is the 'named constructor idiom'?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is volatile, register definition in C
Is null always equal to 0(zero)?