DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦75fe93783⟧ TextFile

    Length: 279 (0x117)
    Types: TextFile
    Names: »mscbug.c«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/TeXcontrib/gnuplot/bugtest/mscbug.c« 

TextFile

#include <stdio.h>

main()
{
double x;

	printf("look at the fourth, fifth and sixth columns\n");
	printf("%%e\t\t %%f\t\t %%g\t %%.g\t %%.1g\t %%.2g\t %%.3g\n\n");
	for ( x = 1e-6; x < 1e+4; x *= 10.0 )
		printf("%e\t %f\t %g\t %.g\t %.1g\t %.2g\t %.3g\n",
			x,x,x,x,x,x,x);
}