โช 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);
}
#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);
}