.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;
}
How can I recover the file name given an open stream?
Write a program to print “hello world” without using semicolon?
What is the difference between ‘g’ and “g” in C?
What is typedf?
how will you write a program on linked lists using JAVA programming???????????
What do you mean by dynamic memory allocation in c? What functions are used?
Where in memory are my variables stored?
What are header files in c programming?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??