What is a header file?
Answer / Neelambuj Kumar Shrivastava
In C, a Header File is a collection of function prototypes, macros, and data types that can be included in multiple source files. Header files are typically saved with the .h extension and provide a way to share code between different parts of a program without repetition.
| Is This Answer Correct ? | 0 Yes | 0 No |
Does free set pointer to null?
What’s the special use of UNIONS?
Explain how can I convert a number to a string?
Explain how to reverse singly link list.
char p="data"; printf(p);
write a program to find the largest and second largest integer from an array
Can you explain the four storage classes in C?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
print 1-50 with two loop & two print Statement
Explain the red-black trees?
write a c program to find largest of three numbers using simple if only for one time.
What is the difference between scanf and fscanf?