/* file "testscanf.c" * A test harness for Excimer Experiment to prove out * my_scanf() function. * Modification History: * 990121 CJC Original * 000327 MRR */ #include "support.h" void main(void) { set_up_transfer_base(); int decimal_no; printf ("Enter a decimal number: "); scanf("%d", &decimal_no); printf ("\nDecimal number is: %d \n", decimal_no); }