Jump to content

Recommended Posts

Posted

Can't we edit code after running it??actually i have been writing programme using turbo c+ and i m unable to edit my code after running it.Is it bcoz of my processor or is that fact that we can't edit code after running it??

Posted

you should be able to edit code after running.

you re probably using a compiler which changes the code so it can be run, best to make a back-up before running/compiling, or figure out what turbo c+ exactly does upon running.

Posted

While you are running code, i.e. in debug mode, your IDE often won't allow editing of the source.

Make sure it's really stopped, no processes left hanging, before trying to edit.

 

Posted

Executable file is opened in read-only exclusive mode which means no other process can modify it until it is running. Linker, which is invoked at the end of compilation process, will be unable to save new executable file with the same file name.

Posted
16 hours ago, Netra77 said:

Can't we edit code after running it??actually i have been writing programme using turbo c+ and i m unable to edit my code after running it.Is it bcoz of my processor or is that fact that we can't edit code after running it??

Can you explain what you mean by "can't edit it"? Do you get an error message? 

Turbo C++? That was discontinued 20 years ago, wasn't it? (It could be a bug in Turbo C++. Which is not going to get fixed, now.)

Why not use a more modern tool? You can get a free version of Microsoft's Visual Studio, which is excellent

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.