#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
What is the purpose of 'register' keyword in c language?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Define recursion in c.
how to find that no is int or float?
When should you use a type cast?
What are multidimensional arrays?
How to print "Hi World" without using semi colon?
. Write a program to get a string and to convert the 1st letter of it to uppercase
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What does 1f stand for?
What is the best organizational structure?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y