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 |
Write a program to print all permutations of a given string.
Write a simple program to find the size of different basic data types in C.
how can u print a message without using any library function in c
Are the variables argc and argv are local to main?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
Explain what is the difference between text files and binary files?
Can we initialize extern variable in c?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
In a switch statement, explain what will happen if a break statement is omitted?
What is .obj file in c?
What is the use of structure padding in c?
Why are algorithms important in c program?