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 available in C language but not in C++?

Answer Posted / hussain reddy

malloc calloc realloc and free in c but not in c++

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is void main () in c?

1160


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1681


If I have a char * variable pointing to the name of a function ..

1138


Explain how can a program be made to print the name of a source file where an error occurs?

1154


What is the use of volatile?

1048


Linked lists -- can you tell me how to check whether a linked list is circular?

1039


what do you mean by enumeration constant?

969


What is calloc() function?

1055


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

1045


How will you delete a node in DLL?

1240


How many bytes are occupied by near, far and huge pointers (dos)?

1127


Where in memory are my variables stored?

1124


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

1268


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

4167


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1376