![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| concatinating data | kingofprussia | UNIX for Dummies Questions & Answers | 1 | 05-06-2008 07:16 PM |
| Grab terms leaving spacings intact | Raynon | Shell Programming and Scripting | 3 | 11-09-2007 10:52 AM |
| leaving ALOM mode | xramm | SUN Solaris | 3 | 10-09-2007 02:51 AM |
| delete string in a text file leaving the first occurrence | gopskrish | UNIX for Dummies Questions & Answers | 12 | 10-31-2006 07:32 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
copying or concatinating string from 1st bit, leaving 0th bit
Hello,
If i have 2 strings str1 and str2, i would like to copy/concatenate str2 to str1, from 1st bit leaving the 0th bit. How do i do it? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
I think you mean a byte, not a bit.
This is related to your other post, which is not readable, at least for me. Code:
strcpy(str1, &str2[1]); strcat(str1, &str2[1]); |
|
#3
|
|||
|
|||
|
Thanks a lot!!!
|
|||
| Google The UNIX and Linux Forums |