Jump to content

Count in octal: Difference between revisions

mNo edit summary
Line 71:
printf("%o\n", l);
}
}</lang>
 
=={{header|C}}==
<lang C>#include <stdio.h>
#include <limits.h>
 
int main()
{
unsigned int i;
for (i = 0; i <= UINT_MAX; i++)
printf("%o\n", i);
return 0;
}</lang>
 
Line 89 ⟶ 101:
} while(i != 0);
}</lang>
 
=={{header|Fortran}}==
{{works with|Fortran|95 and later}}
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.