what information does the header files contain?

Answer Posted / avinandan

Header files contain line- and field-oriented ASCII text
It contain declerations,macro definitions.

Is This Answer Correct ?    0 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can one function call another?

619


What are the scope of static variables?

594


What are the properties of union in c?

577


What is array of structure in c programming?

743


Are local variables initialized to zero by default in c?

540






Do string constants represent numerical values?

907


Can variables be declared anywhere in c?

611


What is void c?

558


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5171


Explain 'bus error'?

545


Differentiate Source Codes from Object Codes

807


What is const and volatile in c?

557


Why is extern used in c?

604


What is the explanation for modular programming?

672


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

644