Forum: C Aug 9th, 2009 |
| Replies: 1 Views: 215 I made a rough algorithm from given program.
1. Take inputs from user.
2. Do calculations.
3. Print the result.
I suggest you to add do...while loop as follows =>
1. do
{ |
Forum: C Aug 7th, 2009 |
| Replies: 13 Views: 550 I assume that you know how to traverse a linked list.
just strat from 0th node and go to the node which containg negative number.
make next node of this current node(which containg negative... |
Forum: C Jul 12th, 2009 |
| Replies: 9 Views: 828 it is not postfix / prefix in 'c' language i.e. it is not ++a (pre increment 'a') or b-- (post decrement 'b')
it a postfix/prefix which referes to conversion of human readable mathematical... |