C Programming and Technical

Can you use the function fprintf() to display the output
on the screen?

Read Solution (Total 2)

C Other Question

How do you print a string on the printer? 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.