Starts_with() and ends_with() fucntions do not work

#include

using namespace std;

int main() {
string name = “John”;
cout << name.starts_with();

return 0;

}