Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
string word = "Hello Boys"; char x[100] = word; // wouldn't work char x[] = word; //wouldn't work either
I rarely work with strings and chars and now it's coming back right at me.