answersLogoWhite

0

Compiler-dependent, in real life you should never do that, write separated Assembly modules instead.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Is embedded C an assembly language?

No.


Is c language assembly language?

No.


What languages were there before c language?

Algol 60 assembly language b language c language


Which language is used for windowsxp?

Mainly C and C++ and a bit of assembly language.


In which software language C software was developed?

No language, directly in assembly language.


In which programming language are operating systems written?

Usually a combination of C++, C and assembly language.


Difference between c syntax and c syntax?

Using normal C you cannot address a bit value.The minimum you can address is 1 byte.using embedded C you can access even abit valueC is a widely used general purpose high level programming language mainly intended for system programming.Embedded C is an extension to C programming language that provides support for developing efficient programs for embedded devices.It is not a part of the C language


What is structured assemly language programming and C programming?

A way of writing computer programs that are human readable (and understandable to programmers).


What has the author Vincent Mahout written?

Vincent Mahout has written: 'Assembly language programming' -- subject(s): Embedded computer systems, Microprocessors, Assembler language (Computer program language)


What are translator in c language?

The assembler is translator which converts assembly language code into machine language code.


What is the purpose of C?

C was once one of the most popular computer programming languages, but it has now largely fallen out of favor. C++ and C# have largely replaced it for most purposes. Where it is still useful is as "portable assembly code". If you create a new language that outputs C rather than assembly code, you can more easily port your language to many platforms, including embedded chips. Occasionally, very low level operating system and hardware code is still written in C. For example, C++ was first written using this method in a program called cfront.


What is embedded sql?

Embedded SQL is a method of combining the computing power of a programming language and the database manipulation capabilities of SQL. Embedded SQL statements are SQL statements written inline with the program source code of the host language. The embedded SQL statements are parsed by an embedded SQL preprocessor and replaced by host-language calls to a code library. The output from the preprocessor is then compiled by the host compiler. This allows programmers to embed SQL statements in programs written in any number of languages such as: C/C++, COBOL and Fortran.The ANSI SQL standards committee defined the embedded SQL standard in two steps: a formalism called Module Languagewas defined, then the embedded SQL standard was derived from Module Language.[1] The SQL standard defines embedding of SQL as embedded SQL and the language in which SQL queries are embedded is referred to as the host language. A popular host language is C. The mixed C and embedded SQL is called Pro*C in Oracle and Sybase database management systems. In the PostgreSQL database management system this precompiler is called ECPG. Other embedded SQL precompilers are Pro*Ada, Pro*COBOL, Pro*FORTRAN, Pro*Pascal, and Pro*PL/I.