f(char *p)
{
p=(char *)malloc(sizeof(6));
strcpy(p,"HELLO");
}
main()
{
char *p="BYE";
f(p)
printf("%s",p);
}
what is the output?

Answer Posted / deepa

the outpu is hello coz the pointer is pointing to a
location where the string "bye" is written in the next
program yu are using the same pointer to point to some
other string so it gets overwritten

Is This Answer Correct ?    2 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where are c variables stored in memory?

785


What do you understand by normalization of pointers?

805


What does 2n 4c mean?

957


What is array within structure?

812


How many parameters should a function have?

855


What should malloc(0) do?

792


What are the types of type specifiers?

781


Explain what are preprocessor directives?

809


What is the use of in c?

742


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

815


Write a program to show the change in position of a cursor using c

797


What is difference between far and near pointers?

781


What do you mean by scope of a variable in c?

742


What is structure pointer in c?

760


What does %p mean c?

804