C Programming and Technical Programming Output

What is hashing?

Read Solution (Total 1)

C Other Question

main()
{
int a=10,b=20;
a^=b^=a^=b;
printf("%d%d",a,b);

a) a=20,b=10
b) a=10,b=20
c) Syntax error
d) Unpredictable

Ans : a=20 b=10

can somebody conclude it.
Can static variables be declared in a header file?