.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
how to find a 5th bit is set in c program
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
What are the types of data files?
why i join syntel?
23 Answers ABC, Syntel, TCS,
What is the scope of static variables in c language?
Write a program to print factorial of given number using recursion?
How to write a program to receive an integer & find its octal equivalent by using for loop?
What are the two types of structure?
Reverse a string word by word??
Are there any problems with performing mathematical operations on different variable types?
what is void pointer?
How can I implement sets or arrays of bits?