What is the use of header?
No Answer is Posted For this Question
Be the First to Post Answer
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
Explain goto?
size maximum allocated by calloc()
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
what do the 'c' and 'v' in argc and argv stand for?
How can you tell whether two strings are the same?
In header files whether functions are declared or defined?
Explain what is a 'locale'?
Give me the code of in-order recursive and non-recursive.
Explain the advantages and disadvantages of macros.
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.