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 |
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is the difference between text and binary i/o?
what is the use of macro program
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
What are the different file extensions involved when programming in C?
simple program for virtual function?
what are two categories of clint-server application development ?
what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??
Can a program have two main functions?
Program to find the absolute value of given integer using Conditional Operators
Explain what is the difference between #include and #include 'file' ?
#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?