.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
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
write a programme that inputs a number by user and gives its multiplication table.
Is there anything like an ifdef for typedefs?
Write a function to find the area of a triangle whose length of three sides is given
why we are using semicolon at the end of printh statment
How does sizeof know array size?
Define C in your own Language.
why programming language C is still used in operating system's kernel??
Is c procedural or object oriented?
what is the difference between malloc() and calloc() function?
Is it possible to initialize a variable at the time it was declared?
Describe the order of precedence with regards to operators in C.