里面包含很多c语言的源码

源代码在线查看: printer.c

软件大小: 694 K
上传用户: foreverNewcomer
关键词: c语言 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* Demonstrates printer output. */
				/* stdprn is not ANSI Standard */
				#include 
				
				int main( void )
				{
				    float f = 2.0134;
				
				    fprintf(stdprn, "\nThis message is printed.\r\n");
				    fprintf(stdprn, "And now some numbers:\r\n");
				    fprintf(stdprn, "The square of %f is %f.", f, f*f);
				
				    /* Send a form feed. */
				    fprintf(stdprn, "\f");
				
				    return 0;
				}
				
							

相关资源