Forum: Legacy and Other Languages Apr 9th, 2008 |
| Replies: 1 Views: 511 PROLOG problem First of all let me apologize for posting in the wrong forum ... but I didn't find one for prolog... please redirect me if we have one ... and anyone's response if he/she knows the answer is... |
Forum: Python Mar 31st, 2008 |
| Replies: 4 Views: 695 Re: Python print Thanks ... that worked ...
though am not very sure how ?? ..... google didn't help me much from the lead you had given
how wexactly the offsets besides the % signs work ?? |
Forum: Python Mar 31st, 2008 |
| Replies: 4 Views: 695 Python print I have to output a collection of strings and integer values such that there is one string followed by an integer in one line. the problem i am having is to arrange it properly on the... |
Forum: C Feb 27th, 2008 |
| Replies: 2 Views: 230 C standard semantics ambiguity related question int k = 0; int g() { k = k + 1; return k; }
int D[] = {13, 19, 47, 3, 7};
…..
D[ g() ] = D[ g() ]++ — D[ g() ]++;
According to a book from which this problem comes this code will generate 5 to... |