Quote:
Originally posted by Flac
Ok, I started coding in VB... Now that im switching to C++ i cant figure out how to work strings... How do i store something in a string? how do i declare a string?
In the book im learning from it talks about comparing strings, but hasnt showed how to actauly make a string. Any help would be appriciated.
---Flac
There are two general types of strings you can work with in C++: char arrays and strings from the standard library (which are very similar to strings in vb).