Slashdot Mirror


Linux Journal Interview With Brian Kernighan

pndiku writes "Linux Journal has an interesting interview with Brian Kernighan where he talks about AWK, AMPL and how he had nothing to do with the creation of C."

1 of 333 comments (clear)

  1. Re:If I were Brian... by curtoid · · Score: 0, Redundant

    int foo, *bar; creates an integer named foo, and a pointer to an int named bar. Right? Or am I wrong?

    Wrong. :-8

    foo is an int.

    *bar is an int.