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
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
Difference between a copy constructor and an assignment operator.
what is scupper?
What is a terminating character in c++?
What are the various access specifiers in c++?
Explain the use of this pointer?
What is an associative container in c++?
Please explain the reference variable in c++?
What are the 2 main types of data structures?
What is function overloading c++?
Do you need a main function in c++?
List the advantages of inheritance.
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is using namespace std in cpp?
Explain the isa and hasa class relationships. How would you implement each?