What will be the output of
x++ + ++x?
Answer Posted / vaibhav
if x=4 then o/p will be 9
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
differentiate built-in functions and user – defined functions.
Differentiate between null and void pointers.
What is ## preprocessor operator in c?
Why doesnt this code work?
Tell me what are bitwise shift operators?
Explain built-in function?
What is a scope resolution operator in c?
Explain heap and queue.
Without Computer networks, Computers will be half the use. Comment.
What are the 32 keywords in c?
Do you know what are bitwise shift operators in c programming?
What is volatile c?
What is c definition?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
Can a local variable be volatile in c?