Tutorial dan Contoh Strings C++

Artikel Terkait Tutorial C
There are two types of strings commonly use in C++ programming language:
  • Strings that are objects of string class (The Standard C++ Library string class)
  • C-strings (C-style Strings)

C-strings

In C programming, only one type of string is available and this is also supported in C++ programming. Hence it's called C-strings. C-strings are the arrays of type char terminated with null character, that is, \0 (ASCII value of null character is 0). Consider this example:
char str[] = "C++";
In the above code, str is a string and it holds 4 character. Although, "C++" has 3 character, the null character \0 is added to the end of the string automatically.
C++ Arrays, Multidimensional Arrays, C++ Function and Array, C++ String
Strings Buffer in C++ Programming

Other ways of defining the string:
char str[4] = "C++";

char str[] = {'C','+','+','\0'};

char str[4] = {'C','+','+','\0'};
Like arrays, it is not necessary to use all the space allocated for the string. For example:
char str[100] = "C++";

Example 1: C++ String

C++ program to display a string entered by user.
#include <iostream>
using namespace std;
int main() {
char str[100];
cout
<<"Enter a string: ";
cin
>>str;
cout
<<"You entered: "<<str<<endl;
cout
<<"\nEnter another string: ";
cin
>>str;
cout
<<"You entered: "<<str<<endl;
return 0;
}
Output
Enter a string: C++
You entered: C++

Enter another string: Programming is fun.
You entered: Programming
Notice that, in second example only "programming" is displayed instead of "Programming is fun". It is because The extraction operator >> considers a space has a terminating character.

Example 2: C++ String

C++ program to read and display an entire line entered by user.
#include <iostream>
using namespace std;
int main() {
char str[100];
cout
<<"Enter a string: ";
cin
.get(str, 100);
cout
<<"You entered: "<<str<<endl;
return 0;
}
Output
Enter a string: Programming is fun.
You entered: Programming is fun.
To read the text containing blank space, cin.get function can be used. This function takes two arguments. First argument is the name of the string(address of first element of string) and second argument is the maximum size of the array.

Passing String to a Function

Strings are passed to a function in a similar way arrays are passed to a function.
#include <iostream>
using namespace std;
void display(char s[]);
int main() {
char str[100];
cout
<<"Enter a string: ";
cin
.get(str, 100);
display
(str);
return 0;
}
void display(char s[]) {
cout
<<"You entered: "<<s;
}
Output
Enter a string: Programming is fun.
You entered: Programming is fun.


Selain Sebagai Penyedia Panduan Belajar Database dan Tutorial Pemrograman, Kami Juga Membagikan Kumpulan Source Code Program Aplikasi dan Ebook Pemrograman Terlengkap yang Bisa Anda Dapatkan Secara Gratis di Halaman :


Rekomendasi Web Hosting
  1. 20rb perbulan. Diskon hingga 40% kode kupon: MCP Daftar disini (apache).
  2. 10rb perbulan. Diskon hingga 75% kode kupon: MCP Daftar disini (litespeed).
  3. 10rb perbulan. Diskon hingga 70% kode kupon: aff-MCP Daftar disini (apache).