What is the difference between Char a[ ]=”string” and char
*a=”String”
Answer Posted / kanakesh
using char*a we can't assign new individual character like
a[2]='k';
| Is This Answer Correct ? | 10 Yes | 9 No |
Post New Answer View All Answers
What is c++ course?
What is stream and its types in c++?
Does improper inheritance have a potential to wreck a project?
Is c++ platform dependent?
Describe Trees using C++ with an example.
Why c++ is not a pure oop language?
How do you define a class in c++?
Can a function take variable length arguments, if yes, how?
What is a far pointer? where we use it?
What is oop in c++?
What is an undefined reference/unresolved external symbol error and how do I fix it?
What character terminates all character array strings a) b) . c) END
Is java made in c++?
Define the process of error-handling in case of constructor failure?
What is c++ stringstream?