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 |
HOW CAN ADD OUR FUNCTION IN LIBRARY.
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
When is an interface "good"?
wat is the meaning of c?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Where can I get an ansi-compatible lint?
Is c is a middle level language?
What is bash c?
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
what is function pointer?