.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 action and transformation in spark?
how i m write c program 1.check prime number 2.prime number series
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What are data types in c language?
What are preprocessor directives?
What does extern mean in a function declaration?
What is a far pointer?What is the utility?
Write a program on swapping (100, 50)
Why is a semicolon (;) put at the end of every program statement?
program for comparing 2 strings without strcmp()
What is malloc and calloc?