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 |
formula to convert 2500mmh2o into m3/hr
What is character constants?
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
What is the use of ?: Operator?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
Method Overloading exist in c ?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
difference between ordinary variable and pointer in C?
write a program to concatenation the string using switch case?
suppose there are five integers write a program to find larger among them without using if- else
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers