Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~185 People Reached
Favorite Forums
Favorite Tags
c x 2
Member Avatar for cinger

[code=c] int main() { int a,b,c; a=b=c=1; c = ++a || ++b && ++c; printf("%d %d %d", a,b,c); } [/code] here the expression is considered from left to right. but the confusion of mine is: && has got higher precedence than that of ||. so ++b && ++c should be …

Member Avatar for gkbush
0
141
Member Avatar for cinger

hi everyone, i am working on Turbo C 3. here the near pointer is of 16 bits and the far pointers are of 32 bits. i want to know how these logical addresses of 16 and 32 bits are converted into physical address of 20 bits. thanks.

Member Avatar for Ancient Dragon
0
44