Source code
The text of a program that a user can read,commonly thought of as the program.The source code is input into C compiler.
Object Code
Translation of the source code of a program into machine code, which the computer
can read and execute directly. Object code is the input to the linker.
Linker
A program that links separately compiled modules into one program.
It also combines the functions in the Standard C library with the code that you wrote.
The output of the linker is an executable program.
A program that links separately compiled modules into one program.
It also combines the functions in the Standard C library with the code that you wrote.
The output of the linker is an executable program.
Library
The file containing the standard functions that your program can use. These functions
The file containing the standard functions that your program can use. These functions
include all I/O operations as well as other useful routines.
Compile Time
The time during which your program is being compiled.
The time during which your program is being compiled.
Run Time
The time during which your program is executing.
Array
The time during which your program is executing.
Array
- Size: Number of elements or capacity to store elements in an array is called its size.it is always mentioned in brackets. e,g [], int num[5]={2,3,1,6,4} here 5 is size of an array .
No comments:
Post a Comment