discuss the steps needed to get a program from source code to
executable in a system?
Answer Posted / vadivelt
1.Source and header files
- Preprocessing
- Compilation
Outcome of compilation process would be object file.
2.Object files
- Linking
Outcome of linking process would be executable image
3.Executable - Final image
Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Why c is called a middle level language?
What is a good data structure to use for storing lines of text?
What is "Hungarian Notation"?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
Explain how can I convert a number to a string?
What is %g in c?
Place the #include statement must be written in the program?
program to convert a integer to string in c language'
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is function prototype in c with example?
Can you apply link and association interchangeably?
How do shell structures work?
What are the two types of functions in c?
can we have joblib in a proc ?