All pastes #345495 Raw Edit

Stuff

public text v1 · immutable
#345495 ·published 2007-02-08 15:38 UTC
rendered paste body
#include <stdio.h>
#include <string.h>

int main() {
  char yesno[4];
  
  printf("Dost thou wish to install the rockbox bootloader? (y/n) :");
  if(fgets(yesno,4,stdin)){   
    if (!strncmp("y",yesno,1)) {
      printf("Read yes : %s",yesno);
    }
    else {
      printf("Read no : %s",yesno);
    }
  }
  return 0;
}