プログラミング言語Cの演習
以下のようにプログラミングをしてコンパイルしても特にエラーは無かったのですが・・・、実行しようとするとセグメンテーション違反になってしまいます。誰か分かる方がいたら解答かアドバイス欲しいです。
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define MAXOP 100
#define NUMBER '0'
#define MAXVAL 100
#define BUFSIZE 100
int getop(char s[]);
int getch(void);
void ungetch(int c);
void push(double f);
double pop(void);
int sp = 0;
double val[MAXVAL];
char buf[BUFSIZE];
int bufp = 0;
main()
{
int type;
double op2;
char s[MAXOP];
while ((type = getop(s)) != EOF) {
switch (type) {
case NUMBER:
push(atof(s));
break;
case '+':
push(pop() + pop());
break;
case '-':
op2 = pop();
push(pop() - op2);
break;
case '/':
op2 = pop();
if (op2 != 0.0)
push(pop() / op2);
else
printf("error: zero divisor\n");
break;
case '%':
op2 = pop();
if (op2 != 0.0)
push(fmod(pop(), op2));
else
printf("error: zero divisor\n");
break;
case '\n':
printf("\t%.8g\n", pop());
break;
default:
printf("error: unknown command %s\n", s);
break;
}
}
return 0;
}
int getop(char s[])
{
int c, rc;
float f;
while ((rc = scanf("%c", &c)) != EOF)
if ((s[0] = c) != ' ' && c != '\t')
break;
s[1] = '\0';
if (rc == EOF)
return EOF;
else if (!isdigit(c) && c != '.')
return c;
ungetc(c, stdin);
scanf("%f", &f);
sprintf(s, "%f", f);
return NUMBER;
}
void push(double f)
{
if (sp < MAXVAL)
val[sp++] = f;
else
printf("error: stack full, can't push %g\n", f);
}
double pop(void)
{
if (sp > 0)
return val[--sp];
else {
printf("error: stack empty\n");
return 0.0;
}
}
int getch(void)
{
return (bufp > 0) ? buf[--bufp] : getchar();
}
void ungetch(int c)
{
if (bufp >= BUFSIZE)
printf("ungetch: too many characters\n");
else
buf[bufp++] = c;
}
補足
いえいえ、その違いは解るのですが、 なぜ「C」で、なぜ「F」なのか?ということです。 「A」や「B」ならばパートかともすぐに連想できますが。 まあ、ABならば、そもそも付ける必要もない気もします。 つまり、Cには、そしてFには何か特別な意味があると思って良いと思うのです。 どこかでこんな話を聞きました。 いくつものバージョンを作っていて、採用したのがC・Fバージョンということでしたが、本当かどうか分かりませんでした。 そういうことで、CやFとは何ですか?ということなのです。