main()
{
intx=2,y=6,z=6;
x=y=z;
printf(%d",x)
}
Answer Posted / kdedman.kan
x=6 , because its the latest value.
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
string reverse using recursion
What is the difference between printf and scanf in c?
Is this program statement valid? INT = 10.50;
What is pointer to pointer in c?
What is sizeof return in c?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What are structure members?
Tell me the use of bit field in c language?
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!+....
What is default value of global variable in c?
Explain how can I write functions that take a variable number of arguments?
Why shouldn’t I start variable names with underscores?
What are bitwise shift operators in c programming?
Can we declare variable anywhere in c?
Explain enumerated types.