From: anarchy AT stad DOT dsl DOT nl (Peter Jan Piet Kleyn) Newsgroups: comp.os.msdos.djgpp Subject: How do I use DJGPP? missing cc1plus.exe Date: Thu, 17 Apr 1997 12:41:15 GMT Organization: Big Bombs inc. Message-ID: <3354eca5.1354695@news.globalxs.nl> Reply-To: anarchy AT stad DOT dsl DOT nl NNTP-Posting-Host: sagittarius.stargazer.globalxs.nl Lines: 27 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk I've just installed a version of DJGPP, but when I trie to compile some source, like the one below I get a message that cc1plus.exe is missing and that the installation was incomplete. Can anybody help me or sent me this file??? Please also reply by mail, since I don't often get the chance to check this group. Thanks, Kai Klopper, bully AT globalxs DOT nl & anarchy AT stad DOT dsl DOT nl #include main() { printf("Input 2 digits: "); int a, b, som, verschil, u, v; scanf("%d %d", &a, &b); som = a + b, verschil = a - b u = som * som , v = verschil * verschil; printf("\nDe uitkomten zijn %d en %d.\n", u, v); } Thanks!