Language Ccpp Cref Examples Gets.c

/ **************************************************************************
 *
 * Purpose: Compare the action of gets and fgets reading data from STDIN.
 * Author: M J Leslie
 * Date: 22-Apr-95
 *
 *************************************************************************/
#include <stdio.h>
main()
{
 char buff[80];			/* Input buffer.		*/
					/* Get data from the keyboard.	*/
 printf("\nplease enter text => ");
 gets(buff);
 
 printf("\nlength is %d #%s#\n", strlen(buff), buff);
					/* Get data from the keyboard.	*/
 printf("\nplease enter text => ");
 fgets(buff, sizeof(buff), stdin);
 
 printf("\nlength is %d #%s#\n\n",strlen(buff), buff);
}
/*************************************************************************
 * 
 * Example program run.
 * --------------------
 * 
 * please enter text => abcd
 * 
 * length is 4 #abcd# 
 * 
 * please enter text => abcd
 * 
 * length is 5 #abcd
 * #
 *
 *************************************************************************/

file: /Techref/language/ccpp/cref/EXAMPLES/gets.c, 0KB, , updated: 1997年4月21日 09:52, local time: 2025年9月5日 00:38,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://techref.massmind.org/techref/language/ccpp/cref/EXAMPLES/gets.c"> language ccpp cref EXAMPLES gets</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to techref.massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /