hope this piece of code will help, welcome to c++
#include <iostream> using namespace std; int main() { char foo[3][3] = {{'a','b','c'}, {'d','e','f'},{'g','h','i'}}; string bar; bar = ""; for(int i =0 ; i< 3;i++) { for(int j =0 ;j<3;j++) { bar += foo[i][j]; } } cout<< bar; //abcdefghi return 0; }
Related Posts:
- How to convert a char array to a string?
- Comparing the values of char arrays in C++
- Using cin for char array
- Using cin to input a single letter into a char
- How to dynamically allocate arrays in C++
- How to dynamically allocate arrays in C++
- outputting ascii table in C++
- std::string to char*
- How do I find the length of an array?
- Conversion from string to char – c++
- Initializing an array of objects
- Passing an array by reference
- Return array in a function
- What is an unsigned char?
- Passing an array by reference
- What is the array form of ‘delete’?
- Use new operator to initialise an array
- How do I declare a 2d array in C++ using new?
- lvalue required as left operand of assignment – Array
- How to convert a single char into an int [duplicate]
- std::string to char*
- Is there a function to copy an array in C/C++?
- How to convert a std::string to const char* or char*
- Cleanest way to copy a constant size array in c++11
- Reverse Contents in Array
- C++ error: “Array must be initialized with a brace enclosed initializer”
- warning: ISO C++ forbids variable length array
- c++ array – expression must have a constant value
- getline() does not work if used after some inputs
- Passing a 2D array to a C++ function
- How can I convert const char* to string and then back to char*?
- Static array vs. dynamic array in C++
- How to create a dynamically-allocated array of const objects, but have values assigned to them?
- Convert char* to string C++
- Fill array with random numbers within a specified range (C++)
- Remove an array element and shift the remaining ones
- How to make an array with a dynamic size? General usage of dynamic arrays (maybe pointers too)?
- How to add element to C++ array?
- How to convert vector to array
- How to find the size of an int[]?
- C++: Expression must have a constant value when declaring array inside function
- splitting a string into an array in C++ without using vector
- What’s the syntax for declaring an array of function pointers without using a separate typedef?
- Printing an array in C++?
- Delete 2D array C++
- How do you initialise a dynamic array in C++?
- C++ array assign error: invalid array assignment
- How to add element to C++ array?
- Reading from .txt file into two dimensional array in c++
- extended initializer lists only available with
- Creation of Dynamic Array of Dynamic Objects in C++
- how to initialize an empty integer array in c++
- Check if C++ Array is Null
- Correct way to work with vector of arrays
- Resizing dynamic array in c++
- C++ Initializing a Global Array
- Dynamically allocated string array, then change it’s value?
- Convert char array to single int?
- How can I assign an array from an initializer list?
- How do I return a char array from a function?
- creating an array of structs in c++
- Reading data from file into an array
- How to read lines of text from file and put them into an array
- Why can’t we pass arrays to function by value?
- Double pointer array in c++
- C++ pass an array by reference
- How to sort with a lambda?
- How to memset char array with null terminating character?
- casting int to char using C++ style casting
- creating dynamic array of string c++
- creating an array of structs in c++
- C++ Array of pointers: delete or delete []?
- too many initializers for ‘int [0]’ c++
- C++ correct way to return pointer to array from function
- Warning: comparison of distinct pointer types
- how to find 2d array size in c++
- How do I simply compare characters in C++?
- Getting error “array bound is not an integer constant before ‘]’ token”
- Different ways to deallocate an array – c++
- Is C++ Array passed by reference or by pointer?
- Proper way to pass dynamic arrays to other functions
- Array of Linked Lists C++
- C++ float array initialization
- How to implement 2D vector array?
- What is the difference between g++ and gcc?
- What is the best way to use a HashMap in C++?
- Read file line by line using ifstream in C++
- Virtual/pure virtual explained
- error: redefinition of class
- Destructor for a linked List
- Why use a new call with a C++ ‘vector’?
- Best way to extract a subvector from a vector?
- Base class undefined
- C++ – Assigning null to a std::string
- Error “Unterminated conditional directive” in cross-referencing headers
- C++ template – error: expected initializer before ‘<' token
- C++ Cannot call constructor directly in small example
- C++ compiler error c4430 “c++ doesnt support default int”
- Using OpenMP with clang
- “Incomplete type not allowed ” when creating std::ofstream objects