Chapter 8
Chapter 8
Loader: The loader takes the executable file created by the linker and puts it into memory so it can be
run. It makes sure everything the program needs is in place and ready to go.
Define delimiters.
Delimiters are like separators that help computer programs understand where one part of the
information ends and another begins. For example, in a list of numbers separated by commas, the
commas act as delimiters, showing where each number starts and stops.
Long Question
What is programming language? Describe two categories of programming
languages.
Output: 27 + 19 = 46
printf("%f", Doubt);
Output: 10 15
1. Output: c=24
#include <stdio.h>
int main()
int x = 5, y;
y = x++;
return 0;
Output: 6 5
Long