What is the difference between "calloc" and "malloc"?
Answer Posted / vijay
Calloc allocates the array of blocks of memory whearas
malloc allocates the memory of the size given as an
argument.
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
What is the type of this pointer in c++?
Evaulate: 22%5 a) 2 b) 4 c) 0
Must accepts "Maestro Cards" Tax for bike should be less than 15 Total number of lanes is more than 10 Must provides monthly pass Write a method: boolean isGoodTollBridge(String[] cardsAccepted, String[] tollTax, boolean hasMonthlyPass, int numberOfLanes); String[] cardsAccepted A String array of names of card types accepted for payment of toll tax, it can be null if the toll does not accept any card String[] tollTax A String array of toll tax chart (say “Train : 300â€Â,â€ÂBullCart : 10â€Â) boolean hasMonthlyPass This parameter defines whether there is any monthly pass available or not int numberOfLanes This parameter defines the number of lanes for each side
How do you clear a buffer in c++?
What does floor mean in c++?
Can turbo c++ run c program?
What is pair in c++?
What is the difference between containment and delegation?
To which numbering system can the binary number 1101100100111100 be easily converted to?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
Is c++ a good beginners programming language?
What does flush do?
Evaluate !(1&&1||1&&0) a) Error b) False c) True
Where are setjmp and longjmp used in c++?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .