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
To translate the C source code program, you need a program called a "C compiler".
the program written in high level language is called "source program"
"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.
Write the source program. Compile. Link executable. Run it.
The Java language derives much of its syntax from C and C++ but has a simpler object model and fewer low-level facilities
what are the parts of C language program
No.
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)
No, but source-programs written in C language are.
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.
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.
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.