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
Which node is more powerful and can handle local information processing or graphics processing?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is the role of this pointer?
how do you programme Carrier Sense Multiple Access
What are the 5 data types?
Are the expressions * ptr ++ and ++ * ptr same?
Can you add pointers together? Why would you?
What are local static variables? How can you use them?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the use of void pointer and null pointer in c language?
What are the rules for identifiers in c?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Can the size of an array be declared at runtime?
int i=10; printf("%d %d %d", i, i=20, i);