C++ doesn't care about either the file name or its extension. It will behave in the same way no matter what the file is called.
The only thing to decide is whether to open the file in text mode (which is the default) or binary mode. In this case, I would say use the normal text mode, as that matches the type of data contained in the file.