Forum: C Jul 8th, 2005 |
| Replies: 1 Views: 1,725 Hello all. Essentially what I need to do is what is described in the topic, in the context of using winsock's recv() function.
I've made some code that does what recv() does to strings so that I... |
Forum: C Jun 8th, 2005 |
| Replies: 12 Views: 47,922 If I'm not mistaken, sprintf() prints to whole strings, not to subscripts of strings, which is what I needed. |
Forum: C Jun 8th, 2005 |
| Replies: 12 Views: 47,922 Thank you Dave Sinkula. Adding "+ '0'" works fine.
It took me a little to understand why exactly it works though. :o Thanks again. :) |
Forum: C Jun 8th, 2005 |
| Replies: 12 Views: 47,922 Hello, I'm new to C and having this problem. What I need to do is add a single integer (0-9) to an (obviously char) string. More specifically, I want to add the value of a function that returns an... |