main()
{
char p[] = "hello world!";
p = "vector";
printf("%s",p);
}
Answer Posted / shiva
vector
| Is This Answer Correct ? | 13 Yes | 17 No |
Post New Answer View All Answers
What is the use of typedef in c?
what are non standard function in c
What is data structure in c and its types?
What is the difference between malloc calloc and realloc in c?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What is variable initialization and why is it important?
Is c easy to learn?
Why do we use static in c?
Explain what are compound statements?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Explain what is page thrashing?
can anyone suggest some site name..where i can get some good data structure puzzles???
What do you mean by keywords in c?
What is the explanation for the dangling pointer in c?
What is "Duff's Device"?