Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

C++의 문자열 배열


문자열 배열은 string 키워드를 사용하여 C++에서 생성할 수 있습니다. 여기에서는 이 접근 방식을 사용한 C++ 프로그램에 대해 논의하고 있습니다.

알고리즘

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

예시 코드

#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;
}

출력

The name of fruits are:
Grape, Mango, Orange