What should not contain a header file?
Answers were Sorted based on User's Feedback
Answer / laxman
header file should contain only declarations and structure
templates.It should not contain function definitions.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / ada
Head file should not contain defining instances of global
variables and function bodies.
| Is This Answer Correct ? | 1 Yes | 1 No |
What is volatile c?
What does main () mean in c?
What is memmove?
What is the benefit of using an enum rather than a #define constant?
What is the right type to use for boolean values in c?
What is the difference between getch() and getche()?
Explain the binary height balanced tree?
Can you define which header file to include at compile time?
what is pointer ? what is the use of pointer?
What does 2n 4c mean?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?