[Solved] Why is Turbo C++ showing this error in DOSBox on my Mac?

Your Installation must be faulty! I’ve a mac, in fact, I’m currently running TurboC++ on it as I type. Consider uninstalling and then reinstalling. Download Here Download the package just like you would download a .dmg application from the net. (i.e. Drag and dropping the application into the Applications folder) Make sure that your Applications … Read more

[Solved] want to create diamond shape using while in C

It would help to see your code for your implementation of the while loop to see what’s wrong, but the general solution for converting a for loop to a while loop is this: for(i=1;i<=2;i++) { /*your code*/ } becomes i = 1; while(i<=2) { /*your code*/ i++; } Make sure your iterators and decrementors are … Read more