.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
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What are the features of c languages?
1,4,8,13,21,30,36,45,54,63,73,?,?.
10 Answers AMB, Franklin Templeton,
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
Is boolean a datatype in c?
WHAT IS FLOAT?
Are enumerations really portable?
What is c value paradox explain?
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is difference between %d and %i in c?
Why is void main used?