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 |
What is the best style for code layout in c?
what are the advantages of a macro over a function?
Why do we write return 0 in c?
Why dont c comments nest?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
What is a wrapper function in c?
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>>>>>
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
explain what is a newline escape sequence?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
Why do we use main function?
How are strings stored in c?