Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » teil eines char arry in neue char array kopieren

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
23.02.2006, 11:50 Uhr
~knabber
Gast


Hallo,

ich hae ein char array:

char mystring[10] ; // mit Inhalt
char *newstring;

Wie kann ich einen Teil von mystring ab 5. Element in newstring kopieren ?

gruss
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
23.02.2006, 12:04 Uhr
Tommix



Hallo,

C++:
#include <stdlib.h>
#include <string.h>

int main()
{
    char mystring[10] = "abcdefghi";
    char *newstring = malloc(6);
    
    strcpy(newstring, mystring+4);
    
    free(newstring);
    return 0;
}




Gruß, Tommix
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
23.02.2006, 12:16 Uhr
~knabber
Gast


danke,

muss ich so schreiben ?

char mystring[10] = "abcdefghi\0";
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
23.02.2006, 12:23 Uhr
Tommix



Nö.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
23.02.2006, 16:02 Uhr
(un)wissender
Niveauwart


Lol
--
Wer früher stirbt ist länger tot.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: