What is the final value of i and final value of LOOPS ?
		
					

Loading

โœช Choose the correct option.

What is the final value of i and final value of LOOPS ?


#include
int main()
{
int i,j,k,l,lc=0;

printf("Enter the number string:<1234 567>
");
scanf("%2d%d%1d",&i,&j,&k);
for(;k;k--,i++)
for(l=0;printf("%d %d
",i,l);)
printf("LOOPS= %d
", lc-1);
}

A. I = 16 and LOOPS=169
B. I = 0 and LOOPS=16
C. Compilation Error
D. No output