answersLogoWhite

0

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

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What translator is needed for C programming language?

To translate the C source code program, you need a program called a "C compiler".


What is a program written in high level language called?

the program written in high level language is called "source program"


What is source code c?

"Source code", in a programming language, refers to the original program, as written by a programmer (and more or less readable by humans); the version of the program before it is converted into machine language by the compiler.


Programming process of c language?

Write the source program. Compile. Link executable. Run it.


Which language is source program written?

The Java language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities


Different parts of c language program?

what are the parts of C language program


A source program is the program written in English language?

No.


What has the author David Spuler written?

David Spuler has written: 'Comprehensive C' -- subject(s): C (Computer program language) 'C++ and C efficiency' -- subject(s): C++ (Computer program language), C (Computer program language)


Is C language readable?

No, but source-programs written in C language are.


What is the use of c compiler in windows?

The c compiler in Windows converts the binary code from source files. C is a compiled programming language and it needs to be converted for the program to run.


Can you give me the source code of sales in c language?

You can check various open source sites (SourceForge, etc.) to see if anyone has a program relating to sales, but if it is a proprietary (for sale) program you won't get the source code unless you pay for the source code license.


Which translates c source code into object code before the program can be executed?

Question #1: Compiler.Question #2: If you want to execute an external program in C, use function system.A translator in computer programming is a piece of software that translates one programming language to another.Therefore a C translator would translate either C source code into another language, let's say BASIC.So if you had a C to BASIC translator, you would write a program in C and the translator would give you the equivalent source code in BASIC.I have never used a translator, but at first glance, it doesn't sound very reliable for both security and memory management reasons.