Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to create a two-dimensional (2D) array of strings in C++

1 Answer

0 votes
#include <iostream>
#include <string>

#define ROWS 2
#define COLS 3

int main() {
    // Create a 2D array of strings
    std::string array[ROWS][COLS];

    // Initialize the array with some values
    array[0][0] = "aa";
    array[0][1] = "bbb";
    array[0][2] = "cccc";
    
    array[1][0] = "ddddd";
    array[1][1] = "eeeeee";
    array[1][2] = "fffffff";

    // Print the array
    for (int i = 0; i < ROWS; ++i) {
        for (int j = 0; j < COLS; ++j) {
            std::cout << array[i][j] << " ";
        }
        std::cout << "\n";
    }
}


        
/*
run:
        
aa bbb cccc 
ddddd eeeeee fffffff 
     
*/

 



answered Dec 13, 2024 by avibootz

Related questions

1 answer 100 views
2 answers 161 views
1 answer 109 views
1 answer 174 views
1 answer 170 views
...