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


pick out the odd one out of the following
a.malloc()
b.calloc()
c.free()
d.realloc()

Answers were Sorted based on User's Feedback



pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()..

Answer / mannucse

c.free()

Is This Answer Correct ?    58 Yes 3 No

pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()..

Answer / manishsoni

here malloc(),calloc(),realloc)() are the memory allocation
function after allocation of memory free is used to freed
the memory which is allocated by the above function.
so the free is odd term.

Is This Answer Correct ?    13 Yes 3 No

Post New Answer

More C Interview Questions

what is the use of call back function in c?tell me with example

2 Answers   Bosch,


What is typedef example?

0 Answers  


What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation

10 Answers   IBM,


how to find greatet of 10 numbers without using array?

4 Answers  


enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

4 Answers   ME,


Explain is it valid to address one element beyond the end of an array?

0 Answers  


What is p in text message?

0 Answers  


When should we use pointers in a c program?

0 Answers  


Is it possible to run a c program without using main?If yes HOW??

13 Answers   Wipro,


Explain how do I determine whether a character is numeric, alphabetic, and so on?

0 Answers  


difference between Low, Middle, High Level languages in c ?

0 Answers   Bosch, Infosys,


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

0 Answers  


Categories