A PHP Error was encountered

Severity: Warning

Message: fopen(/var/lib/php/sessions/ci_sessionckd7og2dsfpac619srt8i6q089fk7tqi): failed to open stream: No space left on device

Filename: drivers/Session_files_driver.php

Line Number: 176

Backtrace:

File: /var/www/interviewmania.com/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: session_start(): Failed to read session data: user (path: /var/lib/php/sessions)

Filename: Session/Session.php

Line Number: 143

Backtrace:

File: /var/www/interviewmania.com/index.php
Line: 315
Function: require_once

What will be the output of the following C code?#include

Home » C Programming » Preprocessors » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    int main()
    {
    int forth = 4, fifth = 5;
    #ifdef next
    forth = 5;
    fifth = 4;
    #endif
    printf("%d, %d", forth, fifth);
    }
    1. 4
    2. 5
    3. 4, 5
    4. 5, 4
    5. None of these
Correct Option: C

4, 5



Your comments will be displayed only after manual approval.