what information does the header files contain?
Answer Posted / mohancvk
the header files consists of file-inclusions,macro
definitions and declarations which get replaced with the
textual source code at preprocessor level ie., before
compilation process.
| Is This Answer Correct ? | 11 Yes | 4 No |
Post New Answer View All Answers
How many levels deep can include files be nested?
What is a built-in function in C?
Why is C language being considered a middle level language?
How can you restore a redirected standard stream?
What are all different types of pointers in c?
What is c programing language?
What are the types of pointers?
How can you find out how much memory is available?
What is the difference between near, far and huge pointers?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Is it fine to write void main () or main () in c?
How do you list files in a directory?
Can we assign string to char pointer?
What does sizeof int return?
Which are low level languages?