LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
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


Reply
  Search this Thread
Old 08-18-2004, 09:06 PM   #1
pantera
Member
 
Registered: May 2004
Posts: 80

Rep: Reputation: 15
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??
 
Old 08-18-2004, 09:35 PM   #2
itsme86
Senior Member
 
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246

Rep: Reputation: 59
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.
 
Old 08-19-2004, 12:22 AM   #3
sibtay
Member
 
Registered: Aug 2004
Location: U.S
Distribution: Ubuntu
Posts: 145

Rep: Reputation: 15
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
 
Old 08-19-2004, 07:19 PM   #4
tonyfreeman
Member
 
Registered: Sep 2003
Location: Fort worth, TX
Distribution: Debian testing 64bit at home, EL5 32/64bit at work.
Posts: 196

Rep: Reputation: 30
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
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
convert string to long/int alaios Programming 10 09-15-2005 09:01 AM
converting a int to string irfanhab Programming 6 07-30-2005 09:40 PM
C++ std::string to int Slaxx Programming 1 10-30-2004 10:03 PM
string to int BadTaste Programming 11 08-18-2004 10:23 AM
string to int in C h/w Programming 2 12-05-2003 03:47 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 08:54 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration