A PHP Error was encountered

Severity: Warning

Message: fopen(/var/lib/php/sessions/ci_sessioncha6hr7gm8d7ik2navb3gt6e9439o2qr): 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 » Operators » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    union test
    {
    char ch;
    char c;
    int n;
    }ts;
    int main()
    {
    printf("%d", sizeof(ts));
    return 0;
    }
    1. 6
    2. 4
    3. 2
    4. 1
    5. None of these
Correct Option: B

4



Your comments will be displayed only after manual approval.