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

how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?

0 Answers   Gopaljee, TCS,


What is the difference between text and binary i/o?

0 Answers  


what is the use of macro program

1 Answers   TCS,


b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720

1 Answers   HCL,


What are the different file extensions involved when programming in C?

0 Answers  


simple program for virtual function?

1 Answers  


what are two categories of clint-server application development ?

1 Answers  


what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??

5 Answers  


Can a program have two main functions?

0 Answers  


Program to find the absolute value of given integer using Conditional Operators

6 Answers   N Tech,


Explain what is the difference between #include and #include 'file' ?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


Categories