Computer >> Máy Tính >  >> Lập trình >> C ++

Mảng chuỗi trong C ++


Có thể tạo mảng chuỗi trong C ++ bằng cách sử dụng từ khóa string. Ở đây chúng ta đang thảo luận về một chương trình C ++ bằng cách sử dụng phương pháp này.

Thuật toán

Begin
   Initialize the elements of array by string keyword. And take string as input.
   Print the array.
End.

Mã mẫu

#include<iostream>
#include<bits/stdc++.h>
using namespace std;
int main() {
   string Fruit[3] = {"Grape", "Mango", "Orange"};
   cout <<"The name of fruits are:"<< "\n";
   for (int i = 0; i < 3; i++)
      cout<< Fruit[i]<<",";
   return 0;
}

Đầu ra

The name of fruits are:
Grape, Mango, Orange