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


Please Help Members By Posting Answers For Below Questions

Explain data types & how many data types supported by c?

568


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??

1529


What does #pragma once mean?

673


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

798


Explain why c is faster than c++?

562






what is recursion in C

601


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1302


Explain what is the best way to comment out a section of code that contains comments?

708


Can a local variable be volatile in c?

568


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

1618


Explain what is page thrashing?

601


Explain what is a stream?

598


Explain what are the advantages and disadvantages of a heap?

589


What is the difference between char array and char pointer?

519


How reliable are floating-point comparisons?

619