c++
@wallhackio in C any object literal, not just strings, can be used as an lvalue in the form
(struct my_struct){
.initialization = "values",
}
but i guess C++ is not cool enough for this?
re: c++
@wallhackio probably because strings were lvalues when C++ forked from C and C added the other stuff later
re: c++
@wallhackio but string literals being lvalues is important in C as it lets you return them from functions
the fact that you can’t get the address of any other kind of literal is weird
re: c++
@Lady c++ is weird I agree
re: c++
@Lady @wallhackio this may have something to do with how string literals are stored in the data segment in C and thus are basically just implicit global variables? i assume they work kinda the same in C++?
re: c++
@aescling @wallhackio string literals aren’t stored anywhere in C as the C standard does not specify storage. but they do have static storage duration
re: c++
@Lady in C++ all literals are rvalues except for string literals. for Some Reason.