What is the difference between Char a[ ]=”string” and char
*a=”String”
Answer Posted / niranjan kumar niraj
char a[]="string" returns characters and char *a[]="String"
returns address of character
| Is This Answer Correct ? | 1 Yes | 7 No |
Post New Answer View All Answers
What is late binding c++?
What sorting algorithm does c++ use?
How does c++ structure differ from c++ class?
Is c++ double?
How would you use the functions sin(), pow(), sqrt()?
Discussion on error handling of C++ .
What are the benefits of oop in c++?
When should you use global variables?
What are proxy objects in c++?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What is ios flag in c++?
What is the outcome of cout< a) 16 b) 17 c) 16.5
How do I get good at c++ programming?
What are function prototypes?