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 |
Describe the order of precedence with regards to operators in C.
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
What is difference between union All statement and Union?
Write a program to print all the prime numbers with in the given range
8 Answers ABC, College School Exams Tests, TCS,
how to write a prog in c to convert decimal number into binary by using recursen function,
Where register variables are stored in c?
Is register a keyword in c?
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
What does double pointer mean in c?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
How do you determine a file’s attributes?