Why is it that not all header files are declared in every C program?


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

Post New Answer

More C Interview Questions

Is a pointer a kind of array?

0 Answers  


What is the c value paradox and how is it explained?

0 Answers  


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

0 Answers   Wipro,


void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case

9 Answers   Accenture, TCS,


progrem to generate the following series 1 12 123 1234 12345

6 Answers   HCL, Wipro,






why do some people write if(0 == x) instead of if(x == 0)?

0 Answers  


main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }

6 Answers  


What is pointers in c with example?

0 Answers  


AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?

13 Answers   HCL,


How do I access command-line arguments?

2 Answers   Bosch, Wipro,


# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none

7 Answers   Microsoft, TCS,


What is structure and union in c?

0 Answers  


Categories