C CODE PLZ! All instructions for what to do in code
#include <stdio.h>
int main(int argc, char **argv) {
int n, k, l, r, t, d, i;
char str[65];
/* Make the user enter a non-negative integer */
printf("Please enter a non-negative integer: ");
scanf("%d", &n);
while (n < 0) {
printf("Sorry, your input is incorrect.\n");
printf("Please enter a non-negative integer: ");
scanf("%d", &n);
}
/* Convert the integer to reversed binary: e.g. 6 gets converted to 011 */
if...