Answer Posted / guest
Header files (also called ".h files") should generally contain
common declarations and macro, structure, and typedef
definitions, but not variable or function definitions.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is c token?
Can we increase size of array in c?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
Wt are the Buses in C Language
Which header file is essential for using strcmp function?
What is the role of && operator in a program code?
Explain the difference between ++u and u++?
Why doesnt this code work?
Explain how are 16- and 32-bit numbers stored?
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); } }
When should you not use a type cast?
Is there a way to jump out of a function or functions?
What is a pragma?
Is struct oop?
What is huge pointer in c?