answersLogoWhite

0

c is a anon

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

When is an object file in c used?

When you write a compiler, assembler or linker in C.


What is a scatter file in c or c plus plus programming?

Scatter File is a linker script file used by RVCT/Keil for ARM processors. It is used by arm linker.


How do you solve undefined references error in c?

Linker errors are many and varied. Without knowing the error it is impossible to say how you solve it. Most linker errors relate to undefined symbols. For instance, if you declare a function but do not implement it, the function is undefined. This can also happen when you include a function library header but do not link to the function library containing the definitions. The compiler uses the header declarations to ensure all calls to the functions are valid even if the definition hasn't yet been compiled. It is the linker's job to ensure all declarations are defined. The only exception is templates which must be defined before they are used. This is why all template definitions are placed in the header alongside the declarations.


What is a short note on linking error in c plus plus?

A linking error usually denotes some inconsistency between a function's declaration and its definition, typically meaning there is no matching definition for the declared function (an undefined function). Normally this is only a problem if the function is actually called since unused functions are of no concern to the linker, whether defined or not. Linker errors may not relate to errors within your code. An undefined function could simply be the result of not providing the linker with the full path to a function that is implemented in a library. The linker also needs access to all the object files generated by the compiler. If the linker options are correct then the problem is most likely that you've failed to define a declared function.


Neither compiler nor the linker will report run time errors?

Very true, that's why we call them run-time errors.


What are the three c plus plus programming language components?

The editor, compiler and linker.


What is the Example for runtime error?

Examples of run time errors are missing file inclusions, memory insufficient for the currently running program, linker errors


What are the 3 turbo c language components?

Borland Turbo C came with an editor, compiler, linker and debugger, all of which were tightly integrated into the Turbo C IDE (integrated development environment). The professional version also came with standalone versions of the Turbo Assembler and Turbo Debugger. Note that Turbo C is 27 years old. As such it is redundant. All Borland development tools are now owned by Embarcadero. Turbo C is now classed as "antique".


What is tlink in c plus plus compiler?

TLINK is the Turbo C++ linker utility. You use it to link the object files created by the Turbo C++ compiler.


What is the birth name of Amy Linker?

Amy Linker's birth name is Amy Meredith Linker.


Procedure for design of a linker?

what is the procedure for design of a linker ?


What are the different types of error in C plus plus?

Well its not clear what kind of errors that you are looking at. Is it programming error or error during execution? If its programming error then its basically deviation from the standard formats or definitions as defined in C.