strings
parent
724f31fa1b
commit
0303d66ab4
|
@ -1,4 +1,5 @@
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <string.h>;
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -24,6 +25,7 @@ int main(){
|
||||||
string str2 = str + " Wie geht's?";
|
string str2 = str + " Wie geht's?";
|
||||||
cout << "Verketteter String: " << str2 <<endl;
|
cout << "Verketteter String: " << str2 <<endl;
|
||||||
|
|
||||||
|
|
||||||
// Zugriff auf einzelne Zeichen
|
// Zugriff auf einzelne Zeichen
|
||||||
cout << "Erstes Zeichen: " << str[0] << endl;
|
cout << "Erstes Zeichen: " << str[0] << endl;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue