c-first-steps

a C playground
Index Commits Files Refs README
   1 //    Exercise 1-2, Experiment with \c in printf.
   2 
   3 #include <stdio.h>
   4 
   5 int main( void ) {
   6 
   7     printf("\a\n");
   8 
   9     return 0;
  10 }