Pages

Search This Blog

Friday, 22 July 2011

C Apps

main()
{
int i=5,j=6,z;
printf("%d",i+++j);
}


Answer:
11
Explanation:
the expression i+++j is treated as (i++ + j) 

No comments:

Post a Comment