Which is capable to accept a string with white space characters?

Which is capable to accept a string with white space characters?

کون سا وائٹ اسپیس کرداروں کے ساتھ تار قبول کرنے کے قابل ہے؟
Explanation

gets() can accept a full string including white space characters until a newline is encountered.

In contrast, getch() and getche() only accept a single character input.