Wednesday, May 27, 2009

What is the output of following programme ?

int main()
{
int x=10;
printf("%d",++x+x++<x+++x++);
return 0;
}

a. Error
b. 1
c. 24
d. 0
e. 46

No comments: