Search:

Type: Posts; User: sbeard22

Search: Search took 0.01 seconds.

  1. Yeah, it wasn't too bad. The tricky part was...

    Yeah, it wasn't too bad. The tricky part was dealing with the negative business.


    void print_nonprt(char c, FILE *ofp) {

    if(c < -96) {
    fprintf(ofp, "M-^%c",c+192);
    } else if(c <...
  2. Printing non-printing characters in ^ and M- notation

    I have a project to implement the UNIX cat program with 3 flags, -v, -E and one of our choosing. I have everything working except for the -v flag.

    The -v flag is:


    I have been looking through...
Results 1 to 2 of 2