how many header file is in C language ?
Answer Posted / saicharan(cherry)
55 hadder files in C language
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What does 1f stand for?
Linked lists -- can you tell me how to check whether a linked list is circular?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Explain the difference between call by value and call by reference in c language?
What are pointers? What are stacks and queues?
What is malloc return c?
What functions are in conio h?
Is anything faster than c?
what is the significance of static storage class specifier?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What are the different file extensions involved when programming in C?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Can we change the value of #define in c?
What is a loop?
What is volatile variable in c with example?