演習5-2 K&R プログラミング言語C
演習5-2
#include <stdio.h>
#include <ctype.h>
#define SIZE 100
#define BUFSIZE 100
int getch(void);
void ungetch(int);
int main(void)
{
double array[SIZE];
int n, m, getfloat(double *);
int i;
n = 0;
while (n < SIZE && (m = getfloat(&array[n])) != EOF) {
[...]…
- Date : 2010/1/31
- Category : blog
- Tags : language-c
- Comments : (0)


