Would anybody be able to transform the following C code that uses while loops into C code that uses goto loops
while(i<10)
{
i++;
j=0;
while(j<i){
j++;
printf("*");
}
printf("\n");
}
Would anybody be able to transform the following C code that uses while loops into C code that uses goto loops
while(i<10)
{
i++;
j=0;
while(j<i){
j++;
printf("*");
}
printf("\n");
}
Yes I could but that's like transforming a 2010 Mercedes Benz into a 1975 Ford Pinto. Why would you possibly take a good construct and turn it into an extremely bad construct?
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.