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...

Whats wrong with the following function

char *string()
{
char *text[20];
strcpy(text,"Hello world");
return text;
}

Answer Posted / vignesh1988i

as for as i know , there is only one error..... you have
declared text as array of pointers and not as character data
array..... so this text can only accept addresses.... :)

char *text[20] means you are going to store 20 addresses in
this array..... When you store addresses using arrays , the
that is called array of pointers....

if u declare : char text[20] , this will work correctly..



thank u

Is This Answer Correct ?    13 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a program flowchart and how does it help in writing a program?

1188


What is dangling pointer in c?

1326


Which node is more powerful and can handle local information processing or graphics processing?

1368


What are global variables and how do you declare them?

1166


Explain indirection?

1178


all c language question

2485


what are the different storage classes in c?

1232


Why is it important to memset a variable, immediately after allocating memory to it ?

2130


How does struct work in c?

1133


Explain what is the purpose of "extern" keyword in a function declaration?

1121


What is difference between constant pointer and constant variable?

1397


Explain how can I open a file so that other programs can update it at the same time?

1174


What are the advantages of union?

1117


What are the advantages of using Unions?

1170


What are the different types of control structures in programming?

1174