main()
{
char *p1="Name";
char *p2;
p2=(char *)malloc(20);
while(*p2++=*p1++);
printf("%s\n",p2);
}
what is the output?
Answer Posted / mannucse
name
| Is This Answer Correct ? | 8 Yes | 14 No |
Post New Answer View All Answers
What is a function simple definition?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What are the parts of c program?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is FIFO?
What are enumerated types?
How do you print an address?
What is the equivalent code of the following statement in WHILE LOOP format?
about c language
What is variable declaration and definition in c?
Explain how can I read and write comma-delimited text?
Write a program of advanced Fibonacci series.
What is integer constants?
Why isnt any of this standardized in c?
Why is c called a mid-level programming language?