int i;
i=2;
i++;
if(i=4)
{
printf(i=4);
}
else
{
printf(i=3);
}
output of the program ?
Answer Posted / asdf
un predictable
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain built-in function?
Write a program of prime number using recursion.
Explain that why C is procedural?
What is volatile variable in c with example?
Is there any demerits of using pointer?
Explain the red-black trees?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What are the two forms of #include directive?
What is cohesion and coupling in c?
Explain what are multidimensional arrays?
How will you delete a node in DLL?
What are the disadvantages of external storage class?
Without Computer networks, Computers will be half the use. Comment.
Explain modulus operator. What are the restrictions of a modulus operator?