What is the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What is the output of the following program on GCC compiler?

#include 
int main(){
int x=-5;
for(;x;printf("%d ",++x));
return 0;
}

A. -4 -3 -2 -1 0
B. -5 -4 -3 -2 -1 0
C. -5 -4 -3 -2 -1
D. Compiler error