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
Where are c variables stored in memory?
What do you understand by normalization of pointers?
What does 2n 4c mean?
What is array within structure?
How many parameters should a function have?
What should malloc(0) do?
What are the types of type specifiers?
Explain what are preprocessor directives?
What is the use of in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Write a program to show the change in position of a cursor using c
What is difference between far and near pointers?
What do you mean by scope of a variable in c?
What is structure pointer in c?
What does %p mean c?