Yes it is. You must include the string header, as in #include <string> , and make a variable by declaring it as one. string Any_name = "Hello"; If you need a lot of the same, such as names of furniture, for instance, you could declare string furniture[3] = {"Sofa","Table","Lamp"}; and access each by its number. furniture[0] is the Sofa, furniture[1], the Table and Lamp is furniture[2].