Answer Posted / prabhakar
because it consists the definations of per defined functions
...
hence it will be includes the corresponding definations of
function when ever you called the function.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is the difference between arrays and pointers?
Explain how do you search data in a data file using random access method?
Is python a c language?
where are auto variables stored? What are the characteristics of an auto variable?
What is the use of the function in c?
What is assignment operator?
What is static memory allocation? Explain
How do you sort filenames in a directory?
How do you determine the length of a string value that was stored in a variable?
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); } }
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is the difference between a string and an array?
What is difference between %d and %i in c?
Explain a file operation in C with an example.
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above