Live quiz

C Programming - Part 32

Question 1 of 25 Hints left: 3
Q1

What will be the output of the following C code? #include <stdio.h> int main() { int a = 0, i = 0, b; for (i = 0;i < 5; i++) { a++; if (i == 3) break; } }

  • A
  • B
  • C
  • D