Answer Posted / anilkumar927@gmail.com
Do you want the commands for compilation of our code or how
the code is compiling internally?
for commands for compilation : (in Linux)
$cc <filename.c>
Process as fallows :
Application Program --> preprocessor --> Compiler --->
linker ---> loader.
If you want more information please let me know on mail
| Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
Tell me what are bitwise shift operators?
How we can insert comments in a c program?
How can you be sure that a program follows the ANSI C standard?
What are # preprocessor operator in c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is fflush() function?
Can variables be declared anywhere in c?
What are volatile variables in c?
What is the difference between fread and fwrite function?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Differentiate between new and malloc(), delete and free() ?
What is the c language function prototype?
What is difference between array and structure in c?