What are header files and explain what are its uses in c programming?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

wat is the meaning of c?

9 Answers   CTS, IBM, Wipro,


write a program for odd numbers?

15 Answers  


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


How would you find a cycle in a linked list?

3 Answers   NSN,


Explain what is meant by 'bit masking'?

0 Answers  






How does free() know explain how much memory to release?

0 Answers  


Explain what math functions are available for integers? For floating point?

0 Answers  


what is the difference between normal variables and pointer variables..............

15 Answers   HP, Infosys, Satyam, Vivekanand Education Society,


To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9

0 Answers   HCL,


How can I discover how many arguments a function was actually called with?

0 Answers  


Who developed c language and when?

0 Answers  


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


Categories