can we execute the program with the object file



can we execute the program with the object file..

Answer / madhumatee

no.coz object file are the file at the compile time which
are not linked to all required data and methods to run.
when they linked to requied methods and data then they
bcome executable files . nw v cn run this files

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Interview Questions

Explain about C function prototype?

0 Answers  


how to print value of e(exp1)up to required no of digits after decimal?

1 Answers  


The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration

0 Answers  


How can I swap two values without using a temporary?

0 Answers  


what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>

5 Answers   TCS,






write a program to remove duplicate from an ordered char array? in c

2 Answers  


Compare and contrast compilers from interpreters.

0 Answers  


Can you apply link and association interchangeably?

0 Answers   InterGraph,


What is sizeof int?

0 Answers  


main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }

27 Answers   Advent Global Solutions, CitiGroup, Valeo Lighting Systems India Private Limited, Vishal Transformers, Wipro, Zencer,


Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }

1 Answers  


#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }

1 Answers  


Categories