[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: C input



 > From: Leonid Leibman <http://www.raqia.com/~leonidl>
 > Date: Thu, 23 Aug 2001 14:22:36 -0400
 >
 > ---Executing: html-to-ascii
 > Hi, Robert -- do you know how to do the following: I have a file with
 > arbitrary ascii symbols (like EOF in particular), I want to read them
 > into the memory. Seems like fgets for example cares about EOF or
 > maybe something else? gets according to man pages does care about EOF
 > etc....-- 
 > 
 > Leonid Leibman  
 > 

#include <stdio.h>

int main()
{
	char	buffer[65536];
	int	c;
	char*	p;

	p=buffer;
	while ((c=getchar())!=EOF)
		*p++=c;
	return 0;
}








Why do you want this page removed?