Hey, I am trying to read a json file into a json object, what is the best way to do this?
You can do it like this:
std::ifstream my_file("file.json"); json j; j << my_file;
@AbdallaGomaa7, can this issue be closed?
Most helpful comment
You can do it like this: