is it possible to create your own header files?


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

Post New Answer

More C Interview Questions

i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


post new interiew question and aptitude test papers

1 Answers  


What is define c?

0 Answers  


What is modifier & how many types of modifiers available in c?

0 Answers  


Is array a primitive data type in c?

0 Answers  






What is the condition that is applied with ?: Operator?

0 Answers  


6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()

2 Answers   Accenture,


What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }

9 Answers   CTS, Wipro,


what is the coding of display the factorial of a number using array and function?

1 Answers  


What is the advantage of a random access file?

0 Answers  


What are the application of void data type in c?

0 Answers  


Can one function call another?

0 Answers  


Categories