what is a headerfile?and what will be a program without it
explain nan example?
Answer Posted / pradeep m.c
headerfile is one includes pre-defined functions n
and definatrions and is a librari of functions,which the
programme refers to and uses required function to
execute operations.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is #line?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Explain how can you check to see whether a symbol is defined?
Does c have an equivalent to pascals with statement?
What is the process to generate random numbers in c programming language?
Explain how can I pad a string to a known length?
Explain why can’t constant values be used to define an array’s initial size?
What is the use of static variable in c?
What are pointers? What are stacks and queues?
What is the data segment that is followed by c?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
What is the use of bit field?
Can a void pointer point to a function?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is the size of array float a(10)?