.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;
}
No Answer is Posted For this Question
Be the First to Post Answer
What is break in c?
What is the need of structure in c?
Which is more efficient, a switch statement or an if else chain?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
Can we use any name in place of argv and argc as command line arguments?
Where are the auto variables stored?
Why is c platform dependent?
suppose there are five integers write a program to find larger among them without using if- else
Does * p ++ increment p or what it points to?
what is an inline function?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
what is the difference between procedure oriented and object oriented progaming language