Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » strcpy und strcat in c ++

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
04.05.2004, 20:02 Uhr
~knopper
Gast


Hallo,
ICh möchte diese beiden Funtionen in C++ ( visual C++) in meinem cpp file benutzen. Wie geht das ?

strcpy(DevFileName, DEVICE_PREFIX);
strcat(DevFileName, deviceName);


gruss
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
04.05.2004, 21:28 Uhr
Pablo
Supertux
(Operator)



Zitat:

man pages

NAME
strcat, strncat - concatenate two strings

SYNOPSIS
#include <string.h>

char *strcat(char *dest, const char *src);

---------------------------------------------------
NAME
strcpy, strncpy - copy a string

SYNOPSIS
#include <string.h>

char *strcpy(char *dest, const char *src);





Bsp:


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

int main() {
    char buffer[100];
    strcpy(buffer, "Hello, ");
    strcat(buffer, "World!");
    printf("buffer=%s\n", buffer);
    return 0;
}


--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!

Dieser Post wurde am 04.05.2004 um 21:28 Uhr von Pablo editiert.
 
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: