what is compiler

Answer Posted / mrs.ahmer

A compiler is a computer program (or set of programs) that
transforms source code written in a programming language
(the source language) into another computer language (the
target language, often having a binary form known as object
code).

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is assert and when would I use it?

575


how could explain about job profile

1446


What standard functions are available to manipulate strings?

558


What is indirection in c?

620


What is the difference between the local variable and global variable in c?

526






What does sizeof int return?

588


Explain what is the difference between #include and #include 'file' ?

581


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

22203


What is the benefit of using const for declaring constants?

581


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

661


the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above

719


Why we use void main in c?

590


if p is a string contained in a string?

1404


What are the similarities between c and c++?

593


What is use of pointer?

583