specific

I need more clarafication on instanization, Assingment, and declaration they seem the same.
1
2
3
4
5
6
7
8
9
#include <string>       // contains a declaration for std::string

int main()
{
    std::string a;      // instantiate an std::string named a
    a = "some text";    // assign some text to the string named a

    return 0;
}
Last edited on
That will do now some one define it pseudo or just define them in english as the words pertain to c++, and once again thanks kbw.
Topic archived. No new replies allowed.