Differentiate Source Codes from Object Codes



Differentiate Source Codes from Object Codes..

Answer / hrpynux@gmail.com

The basic difference between source code and object code is that source code is written by a programmer while an object code is produced when a source code is compiled. Source code is created with a text editor or a visual programming tool and then saved in a file and object code is processed by the CPU in a computer.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

0 Answers  


using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

0 Answers  


can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......

0 Answers  


difference between loading and linking

1 Answers  


You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?

1 Answers  






what is the difference between static variable and register variable?

3 Answers  


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

0 Answers   Wilco,


write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+

1 Answers   Reliance,


How do you determine a file’s attributes?

0 Answers  


What are the types of data files?

0 Answers  


What is an auto variable in c?

0 Answers  


What does the characters “r” and “w” mean when writing programs that will make use of files?

0 Answers  


Categories