5 printf("char: %c\n", a
);
10 printf("int: %d\n", a
);
13 void floatfunc(float a
)
15 printf("float: %f\n", a
);
32 /* printf("%c %d %f\n", 'a', 'b', 'c'); */
33 /* printf("%c %d %f\n", 97, 98, 99); */
34 /* printf("%c %d %f\n", 97.0, 98.0, 99.0); */
39 printf("%d %d\n", b
, c
);
44 printf("%d %d\n", d
, e
);
49 printf("%f %f\n", f
, g
);
54 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/