Which option below best describes the output of the followin…
Which option below best describes the output of the following program? #include int main(){ int num1,quotient; int num_array, i=1,k; num1 = 55; quotient = num1; while(quotient!=0){ num_array= quotient % 4; i++; quotient = quotient / 4; } for(k = i – 1; k>0; k–) printf(“%d”,num_array); return 0;}