#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 ANSI and ISO
What do the functions atoi(), itoa() and gcvt() do?
What does c mean in basketball?
Differentiate Source Codes from Object Codes
How many levels of pointers have?
What is the difference between array and pointer in c?
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
What are the modifiers available in c programming language?
How are portions of a program disabled in demo versions?
errors in computer programmes are called
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?