What is header file in c?
Answer / Choudhary Jitendera Singh
In C, a header file is a file that contains declarations of functions, macros, and data types. These files are used to share the function prototypes, structure definitions, and other common declarations between multiple source files.
| Is This Answer Correct ? | 0 Yes | 0 No |
Array is an lvalue or not?
What is structure of c program?
Explain built-in function?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
what are brk, sbrk?
What are preprocessor directives in c?
write a addition of two no. program with out using printf,scanf,puts .
What math functions are available for integers? For floating point?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
How is actual parameter different from the formal parameter?
What is main () in c language?