>>39 1 移植性を重視する場合。(C++ の処理系、まだ C と比べると処理系間の差が 大きいから) 2 既存のコードが C で書かれている場合。C++ にしても、あまり嬉しくない。 3 OS の API など、多くの環境で使うことを前提とするバイナリインターフェースを 提供する場合。(ただし Windows に限って言えば COM や .NET があるから、 C++ の方が逆に楽) 4 バイナリの大きさや、メモリ使用量の制約が厳しい場合。組込用の C++ 使うと いう選択肢はアリ。
cout << "Please input the five numbers\n "; cout << "to store in the array.\n "; cout << "After storing them in the array, \n"; cout << "this program will search the number.\n\n";
getdata(num);
int rc = findnum(num);
if(rc!=FAIL) { cout << "Found it\n\n"; } // End if else cout << "The program could not find the number.\n\n";
int main(void){ int i,terms; FORMTERM *term; terms=Get_Form(term); printf("Content-type: text/plain\n\n"); printf("FORM VARIABLE\n"); for(i=0;i int main(void){ int i,terms; FORMTERM *term; terms=Get_Form(term);