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
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 c value paradox explain?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What is the difference between fread buffer() and fwrite buffer()?
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
print a "hello" word without using printf n puts in c language
How can I read/write structures from/to data files?
Explain Basic concepts of C language?
What is 2 d array in c?
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }