Monday, March 7, 2016

Uses of for loop

                                                        Uses of for loop 



#include
#include

int main()
{

int far;
for(far = 0 ; far <= 300; far +=20)
printf("%3d %6.1f\n" ,far ,(5.0/9.0) * (far - 32));
getch();

return 0;
}

No comments:

Post a Comment