English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

im using spetniks c++ compiler, and when i click compile it comes up with the following error: cannot find bcc32.exe please insure that program is running from the same directory as 'bcc32,exe'

2006-08-28 13:21:05 · 2 answers · asked by Anonymous in Computers & Internet Programming & Design

2 answers

Do a re-install of your C++ environment. Do a repair when asked. Something has changed and a re-install (repair) should fix it.

2006-08-28 13:25:30 · answer #1 · answered by Jeffrey F 6 · 0 0

The errors are coming from those lines: grid[0][0] = "a million"; you won't be in a position to have code like that outdoors of any function on your code. you will possibly desire to flow those lines of code into substantial (or another function), and that they are going to artwork. Or, you are able to initialize the array at assemble time utilising this syntax: string grid[3][3] = {   { "a million","2","3" },   { "4","5","6" },   { "7","8","9" }, }; which will enable it run, inspite of the undeniable fact that it does not do very plenty. 3 of your 4 lines in substantial are like this: void show_game_grid(); that does no longer call show_game_grid. it truly is a function prototype (because of the fact it starts with a return style). to call the function, drop the void: show_game_grid(); you apart from mght have not got any enter applications yet. you would be wanting that next so which you will certainly make a flow.

2016-11-05 23:53:38 · answer #2 · answered by ? 4 · 0 0

fedest.com, questions and answers