answersLogoWhite

0

Code source creation of the library in C language?

Updated: 8/18/2019
User Avatar

Wiki User

14y ago

Best Answer

Not possible (if I understood your question at all).

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Code source creation of the library in C language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How can text be converted into a language that computers understand?

Source code is translated into machine code by an interpreter, a compiler or an assembler, depending on the language that was used to write the source code.


In c language what is source program?

Source program or source code in any language is the code you write to make the program do what you want. Things like: #include <stdio.h> void main (); and so on are all pieces of source-code or source program


Is Ruby an interpreted language or a compiled language?

It is an interpreted language, however there are some versions that compile the source code to byte code which can then be interpreted with much greater efficiency than the original source code.


How do you change source code into machine code?

A program called a compiler, or sometimes an assembler (depending on the programming language) does this for you. You write the source code, then invoke the program that will convert this into machine language.


An assembler converts source program into?

An Assembler converts an assembly language source code into machine-specific code.


What combines the object code with the library code to create an executable machine language program?

The linker.


What do you mean programming language?

A programming language is a symbolic language that a computer programmer uses to write computer program source code. Source code is non-executable code and must be translated into machine code. A computer can be programmed to perform this conversion and thus produce the required machine code.


What do you mean by programming language?

A programming language is a symbolic language that a computer programmer uses to write computer program source code. Source code is non-executable code and must be translated into machine code. A computer can be programmed to perform this conversion and thus produce the required machine code.


What is linkers?

C language has a function that contains the object code for predefined functions.for example,the printf() is a library function.if the C program uses any of the library functions, the object code produced for the source code should be combined with the object code of the library functions to generate the final executable code.this process is called linking and it is performed by a 'linker'.


Which is correct source program is a high level language or machine language?

Neither. Programming languages are what we use to create source code.


What language translates source code into binary form?

A Compiler.


Getting source code of c?

C is a programming language, so it doesn't have source code.(On the other hand, C compilers do have source code, but you, as a beginner in programming, could not understand them.)