list the no of files created when c source file is compiled
Answer Posted / suman halder
a).i /* expanded source code generated by preprocessor */
b).asm /* code generated by the compiler */
c).obj /* code generated by the assembler */
d).bak
e).exe /* executable code generated after linking */
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
What is a c token and types of c tokens?
What is the difference between %d and %i?
Explain what is the benefit of using enum to declare a constant?
program to convert a integer to string in c language'
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Describe the steps to insert data into a singly linked list.
Explain how does flowchart help in writing a program?
What is openmp in c?
What library is sizeof in c?
What is C language ?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What is the advantage of a random access file?
What is difference between Structure and Unions?
What is the function of volatile in c language?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }