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

The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................

14 Answers   HOV Services, IBM, Potty,


#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain &#1567;&#1567;&#1567;

4 Answers  


In which area global, external variables are stored?

3 Answers  


What is structure padding ?

3 Answers   HP,


What is typedef example?

0 Answers  






i am using gsm modem ! I USE CMGL COMMAND TO DISPLAY THE LIST OF MESSAGES ! I WANT TO READ EACH MESSAGE ONE BY ONE AND GET EACH MESSAGE INDEX USING C PROGRAM ! THE RESPONSE OF THE MODULE AFTER AT+CMGL IS ---CMGL: 1,"REC READ","+85291234567",,"07/05/01,08:00:15+32",145,37 It is easy to list SMS text messages.---- I WANT THE PROGRAM TO GET THE NUMBER "37"{MESSAGE LENGTH} AS WELL AS "1"(MESSAGE INDEX NUMBER" PLEASE HELP

1 Answers   MTNL,


Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors

3 Answers  


What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 Answers   IBM,


Write a c program to demonstrate character and string constants?

0 Answers  


Dear Sir, we are required the bubble sorting programs Regs Prem

1 Answers  


Here is a neat trick for checking whether two strings are equal

0 Answers  


Which programming language is best for getting job 2020?

0 Answers  


Categories