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."
← Back to Stories (view on slashdot.org)
int foo, *bar; creates an integer named foo, and a pointer to an int named bar. Right? Or am I wrong?
:-8
Wrong.
foo is an int.
*bar is an int.