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 symbol indicated the c-preprocessor?
Define macros.
What is the difference between a free-standing and a hosted environment?
Can I initialize unions?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Explain how can you check to see whether a symbol is defined?
Explain what is #line used for?
Is it possible to initialize a variable at the time it was declared?
What is linear search?
What is pragma in c?
What are the advantages and disadvantages of a heap?
How many types of functions are there in c?
Which is the best website to learn c programming?
Explain how do you use a pointer to a function?
Explain how do you generate random numbers in c?