#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
25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?
11 Answers CTS, TCS,
can we initialize all the members of union?
Explain what are header files and explain what are its uses in c programming?
What is the process to create increment and decrement stamen in c?
what is pointer ? what is the use of pointer?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)
How pointers are declared?
What is main () in c language?
What are void pointers in c?
Explain what happens if you free a pointer twice?