Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the difference between Char a[ ]=”string” and char
*a=”String”

Answer Posted / prasant nayak

differences are as follows
1.
Char a[]="string"; //invalid, coz--its not 'Char' but
its 'char' , i.e its syntaticaly incorrect


char *a="string";//it correct

2.
char a[]="string";

above 'a' is an array of characters , where we can change
the string, its not a constant.
i.e we can do a[3] = 'Z';

char *a = "string";

above 'a' is a string constant where we can't change the
string i.e we can't do a[3] = 'Z';

Is This Answer Correct ?    42 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how overloading takes place in c++?

1041


Please explain the reference variable in c++?

1066


Is python written in c or c++?

1139


What is an incomplete type in c++?

1274


What are files in c++?

1038


What is c++ course?

1041


Do you know what are pure virtual functions?

1143


What is pure virtual function?

1061


What is the use of class in c++?

1078


Explain differences between new() and delete()?

1092


What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?

1167


How can you say that a template is better than a base class?

1070


What are the basic data types used in c++?

1033


What is istream c++?

1187


What is an undefined reference/unresolved external symbol error and how do I fix it?

1119