Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
void main()
{
    int h = 8;
    int b = h++ + h++ + h++;
    printf("%d\n", h);
}

A. 9

B. 10

C. 12

D. 11

Answer: Option D


This Question Belongs to C Program >> C Fundamentals

Join The Discussion

Related Questions on C Fundamentals