Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
08-18-2004, 09:06 PM
|
#1
|
Member
Registered: May 2004
Posts: 80
Rep:
|
int to string+sendto
i have a variable ts which is the string length of the messages that i have to send using sendto().but i cant directly send ts as it is an integer. i need to convert ts into a char or a string so that i can send it using the sendto() function shown below
int sendto(int s, const void *msg, size_t len, int flags, const struct sockaddr *to, socklen_t tolen);
how can i convert it??
|
|
|
08-18-2004, 09:35 PM
|
#2
|
Senior Member
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246
Rep:
|
The message can be of any type...just pass &ts to sendto().
If you want to convert an int to a string then 'man sprintf'. That's one way anyway.
|
|
|
08-19-2004, 12:22 AM
|
#3
|
Member
Registered: Aug 2004
Location: U.S
Distribution: Ubuntu
Posts: 145
Rep:
|
sprintf help:
char *str=(char*)malloc(10);
char *mess="Hello";
int num=20;
sprintf(str,"Mess : %s Number: %d",mess,num)
The resuling string would be
str=Mess : Hello Number : 20
To concatenate a string you need to write %s
and to concatenate an integer you need to write %d
|
|
|
08-19-2004, 07:19 PM
|
#4
|
Member
Registered: Sep 2003
Location: Fort worth, TX
Distribution: Debian testing 64bit at home, EL5 32/64bit at work.
Posts: 196
Rep:
|
I had the same question yesterday under the title g_string_append problem. Although I didn't know that my problem was assigning a double to a string until a responder pointed it out. Here's the answer I finally found to work:
Code:
gchar *string_start;
gint cmin_start = 1440;
/* assign the integer to a string */
sprintf(string_start, "%d", cmin_start);
g_print("%s\n", string_start);
--Tony
|
|
|
All times are GMT -5. The time now is 12:26 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|