Date: Mon, 17 Jan 2000 13:32:29 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Matt Firewalker cc: djgpp AT delorie DOT com Subject: Re: Problem with cin.get In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 16 Jan 2000, Matt Firewalker wrote: > Every time I use cin.get, my program seems to skip right past it. It > doesn't matter what I am trying to do with it; I pass in an array of > characters and a number of characters to read, that's it. Is there > something wrong nyah? You forget about buffering: any prompt which doesn't end with a newline won't be written unless you fflush the stream.