#include <stdio.h> #include <string.h> void print(char str[],char temp[],int low,int high){ while(high >= low){ int diff = high - low; if(diff < 8 ){ for(int i = diff + 1;i < 8;i++){ strcat(str,"0"); } strncpy(temp,str + low,8); printf("%s\n",temp); return; }...