How can I include in Xcode

You can do it by copying stdc++.h file from here:
https://gist.github.com/reza-ryte-club/97c39f35dab0c45a5d924dd9e50c445f

Then you can include the file in your c++ file like this:

 //suppose the file is in your home folder, here my username is reza
 #include "./stdc++.h"

Leave a Comment