#define PRINT(int) printf("int = %d ",int)
main()
{< BR> intx,y,z;
x=03;y=02;z=01;
PRINT(x^x);
z<<=3;PRINT(x);
y>>=3;PRINT(y);
}


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

How does free() know explain how much memory to release?

0 Answers  


what are bit fields in c?

0 Answers  


Explain b+ tree?

0 Answers  


in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above

0 Answers  


Which is better malloc or calloc?

0 Answers  






Why doesnt that code work?

0 Answers  


In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }

1 Answers  


What is an auto keyword in c?

0 Answers  


What will the preprocessor do for a program?

0 Answers   Aspire, Infogain,


Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?

4 Answers   Oracle,


What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value

2 Answers   DynPro, TCS,


When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these

1 Answers   Accenture, IBM,


Categories