what is a headerfile?and what will be a program without it
explain nan example?
Answer Posted / xyz
headerfile is a library of functions,which the program
refers to and uses required functions to execute the
operation..!
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
Explain low-order bytes.
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is meant by int main ()?
What is the purpose of the preprocessor directive error?
Explain the concept and use of type void.
How can I discover how many arguments a function was actually called with?
Is there any demerits of using pointer?
program to convert a integer to string in c language'
What is the difference between near, far and huge pointers?
define string ?
How can I access an I o board directly?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What are the advantages of Macro over function?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above