What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?

Answers were Sorted based on User's Feedback



What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particul..

Answer / sarmistha pattanaik

When we write C program in modular pattern, then generally
it consists of 3 parts, .h file which will contain all the
header info, main.c will contain the main function and one
more .c file which will contain all the function
definitions. In order to compile the two.c file it will
create object file with .o extention. It's a multi step
process. In order to avoid the steps, we can write all the
compiling statements in one file which is the makefile.

Is This Answer Correct ?    2 Yes 2 No

What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particul..

Answer / siva

Can anybody give the makefile.c program, so that i can easily understand.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More C Interview Questions

hi any body pls give me company name interview conduct "c" language only

0 Answers  


Tell me what is the purpose of 'register' keyword in c language?

0 Answers  


Write a program to add a given duration with time(24hrs format)

1 Answers   Protech,


Three major criteria of scheduling.

1 Answers  


Does c have function or method?

0 Answers  






typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


define switch statement?

6 Answers   CTS,


How can I invoke another program or command and trap its output?

0 Answers  


a value that does not change during program execution a) variabe b) argument c) parameter d) none

0 Answers  


2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier.  Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed.  When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed.  Sequence of take-off is the sequence of addition to the waitlist

0 Answers  


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

1 Answers  


What is line in c preprocessor?

0 Answers  


Categories