16 lines
193 B
C
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;
|
|
}
|