The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > High Level Programming
.
google unix.com



High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
perl: simple question on string append the_learner Shell Programming and Scripting 1 05-14-2007 05:09 PM
Simple C question... Hopefully it's simple Xeed High Level Programming 6 12-15-2006 01:29 PM
concat string mpang_ Shell Programming and Scripting 1 07-25-2006 06:03 AM
Concat dhananjaysk Shell Programming and Scripting 1 03-20-2006 06:42 AM
Ok simple question for simple knowledge... Corrail UNIX for Dummies Questions & Answers 1 11-28-2005 12:03 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-23-2007
Registered User
 

Join Date: Apr 2007
Posts: 75
simple question on string concat

This is a simple question...

Code:
char *str = NULL;
int  num = 0;
scanf ("%d", &num);
str = ???

I want str to point to the string num.txt

For e.g: If user enters num = 5,

str should point to "5.txt"

How do I do that ?

Thanks
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 08-23-2007
porter porter is offline Forum Advisor  
Registered User
 

Join Date: Jan 2007
Posts: 2,965
char buf[10];

snprintf(buf,sizeof(buf),"%d.txt",num);

str=buf;

Last edited by porter; 08-24-2007 at 12:47 AM..
Reply With Quote
  #3 (permalink)  
Old 08-23-2007
...@...
 

Join Date: Feb 2004
Location: NM
Posts: 5,214
Code:
/* try */
snprintf(buf,sizeof(buf),"%d.txt",num);
Reply With Quote
Google The UNIX and Linux Forums
Reply

Bookmarks

Tags
None

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:




All times are GMT -4. The time now is 09:12 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66