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


Please Help Members By Posting Answers For Below Questions

#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); }

885


Why c is called a middle level language?

809


What is a good data structure to use for storing lines of text?

811


What is "Hungarian Notation"?

832


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]

2210


Explain how can I convert a number to a string?

847


What is %g in c?

822


Place the #include statement must be written in the program?

749


program to convert a integer to string in c language'

2178


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

850


What is function prototype in c with example?

759


Can you apply link and association interchangeably?

883


How do shell structures work?

782


What are the two types of functions in c?

754


can we have joblib in a proc ?

1916