.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 will the preprocessor do for a program?
What is floating point constants?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Can stdout be forced to print somewhere other than the screen?
Write a program to print “hello world” without using semicolon?
how will you write a program on linked lists using JAVA programming???????????
List some of the static data structures in C?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
without using arithmatic operator convert an intger variable x into x+1
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?