1Mediumgeneralโฑ 45sWhat is the difference between malloc() and calloc()?๐โผAThey are identicalBcalloc() zero-initializes memory and takes element count + size; malloc() does not initialize memoryCmalloc() zero-initializes; calloc() does notDcalloc() cannot allocate arrays
2Mediumgeneralโฑ 45sWhat does the `static` keyword do when applied to a global function in C?๐โผAMakes the function inlineBGives the function internal linkage, restricting it to the file it is defined inCMakes the function run at program startDHas no effect