answersLogoWhite

0

#error

It is not 'directive' it is a utility program called 'debugger'... It's usage is platform-dependent, for example in TurboC it is an integrated part of the IDE.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Simple c debugging programs with answers?

hello


What is debugging in c plus plus?

Debugging is a way of running the program to locate any errors that may arise at run-time.


What is the name of error check technique that uses c language compiler?

Debugging


How do you improve debugging knoweldge in c program?

Read the documentation, and practice a lot.


What are general debugging methods in c plus plus?

General debugging techniques include using exceptions and using the debugger to step-into certain sections of code to check for errors.


What are C scope mainly used for?

A C scope is an application that helps programmers to easily administer work with large amount of program code. It enables specific and targeted searches so that debugging or updating can easily be carried out.


What are the risks of using threading?

A)Testing and debugging difficulty B)Deadlocks C)Data races D)B and C E)A, B and C Any one?


What is the process of finding and correcting errors in a worksheet in excel?

Debugging or auditing.ProofreadingEditing


What is the technical name for debugging?

what is the technical name for debugging?


What is interactive debugging systems?

Interactive debugging systems are tools that allow developers to examine and manipulate the state of a program while it is running. These systems typically provide features such as breakpoints, step execution, and variable inspection, enabling developers to identify and fix errors more efficiently. By allowing real-time interaction with the program, these systems enhance the debugging process, making it easier to understand complex code behavior. Popular examples include GDB for C/C++ and integrated debugging tools in IDEs like Visual Studio and PyCharm.


What are PDB Where must they be located for debugging to work?

PDBA program database (PDB) file holds debugging and project state information that allows incremental linking of a Debug configuration of your program. A PDB file is created when you build your dotnet programme or c/c++. It is located in the same location where application exe is present.


What is defined at the beginning of the C header file?

It's a compiler directive that is ignored by all standards-compliant C compilers. The C++ compiler uses the directive to determine that the code that follows should be treated as being C rather than C++. Most X.h standard library headers in C also have a corresponding cX header in C++, such that <math.h> in C is <cmath> in C++. The C++ header simply imports the extern "C" header into the std namespace and thus avoids pollution of the global namespace.