bardemo.c

来自「表格线打印算法C语言源程序」· C语言 代码 · 共 20 行

C
20
字号
/*
 * bardemo - demonstrate barcode printing subroutine
 * written 1988 David J. Rodman, Paradise Technology, Inc.
 * 70007,1545
 * PUBLIC DOMAIN
 *
 * Note:  Experiment with the resolution using your barcode reader -
 *	some readers like it thicker, some like it thinner.
 * This program barcodes its arguments to its standard output.
 * Typical usage:  bardemo arg arg arg >prn
 */
#include <stdio.h>

main(ac, av)
	char **av;
{
	while(++av, --ac)
		bar(*av);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?