Files
learning_c/ch_05/exercise_05-02/main_template.c
T
2021-02-22 07:06:15 -05:00

16 lines
193 B
C

/*
*
* Exercise 5-2. Write getfloat, the floating-point analog of getint. What type does getfloat
* return as its function value?
*
* Author: Kun Deng
*/
int main()
{
return 0;
}