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 are the usage of pointer in c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What is ponter?
How does placing some code lines between the comment symbol help in debugging the code?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What does volatile do?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Can you subtract pointers from each other? Why would you?
What are the different types of C instructions?
Explain how are 16- and 32-bit numbers stored?
In a byte, what is the maximum decimal number that you can accommodate?
What is the difference between text files and binary files?
Explain what is the difference between a string and an array?
What is formal argument?
What is the difference between break and continue?