main()
{
int i;
printf("%d",i^i);
}
Answer / naresh
output will be Zero as exclusive or'ing of two same no's result in zero
| Is This Answer Correct ? | 2 Yes | 0 No |
Is it valid to address one element beyond the end of an array?
What is structure padding & expalain wid example what is bit wise structure?
write a programe to find the factorial of given number using recursion
How can I swap two values without using a temporary?
When can you use a pointer with a function?
What is meant by gets in c?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is oops c?
What are valid signatures for the Main function?
What is structure in c definition?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
what is array?