Severity: Warning
Message: fopen(/home/answnniz/solutionspile.com/system/sessions/ci_session1e8eb8d47001406062704e014b3cf3d5e8a67295): failed to open stream: Disk quota exceeded
Filename: drivers/Session_files_driver.php
Line Number: 176
Backtrace:
File: /home/answnniz/solutionspile.com/index.php
Line: 367
Function: require_once
Severity: Warning
Message: session_start(): Failed to read session data: user (path: /home/answnniz/solutionspile.com/system/sessions)
Filename: Session/Session.php
Line Number: 143
Backtrace:
File: /home/answnniz/solutionspile.com/index.php
Line: 367
Function: require_once
Does the following code run successfully to return 0 or does it generate a fault? If it runs fine, then what is the output? Otherwise, explain why it is faulty. #include #include void populate(int *a) { int *parray = malloc(2 * sizeof(int)); parray[0] = 37; parray[1] = 73; a = parray; } int main() { int *a = NULL; populate(a); printf("a[0] = %d and a[1] = %d\n", a[0], a[1]); return 0; }