hOW Can I add character in to pointer array of characters
char *a="indian";
ie I want to add google after indian in the char *a
Answer Posted / david
it is not possible because it declares a block of array in
the time of initialisation
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the process of writing the null pointer?
Ow can I insert or delete a line (or record) in the middle of a file?
What do you mean by scope of a variable in c?
What is the difference between array and pointer in c?
Why do we use stdio h and conio h?
What are 3 types of structures?
What Is The Difference Between Null And Void Pointer?
When should structures be passed by values or by references?
What is the difference between call by value and call by reference in c?
What is logical error?
What is the explanation for cyclic nature of data types in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Why is c faster?
What are the scope of static variables?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?