Storing Formatted Data in C
Posted
by rangerdanger16
on Stack Overflow
See other posts from Stack Overflow
or by rangerdanger16
Published on 2010-04-18T22:20:30Z
Indexed on
2010/04/18
22:23 UTC
Read the original article
Hit count: 115
c
Im trying to add variables to a C char array. Also I have tried sprintf, but it is causing a few other issues within my program.
I am looking to do something like this: char* age = "My age is = " + age;
I am planning on sending the char array to a socket using send()
Thanks
© Stack Overflow or respective owner