Explain what header files do I need in order to define the standard library functions I use?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of getch ()?
What is the size of structure pointer in c?
What are pointers? What are stacks and queues?
Which is better pointer or array?
What is function definition in c?
What is the purpose of ftell?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
How many types of sorting are there in c?
what is memory leak?
Explain about block scope in c?
What tq means in chat?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }