cin.getline(char *s, int num_char, char delim); についていくつか質問があります。
違いは何ですか:
char c[100];
cin.getline(c,100,'\n');
と
char *c = new char[100]; //this is the correct form I want to show you
cin.getline(c,100,'\n');
私が知っていることは1つだけです.2つ目は機能しません:-)