Data Type C

#include 
/* Include the header file for input and output */
void main() {
  printf("\n\n\n Three lines");
  printf("\n Special chars.\n\n\n\a\a");
  printf("\t \tA Tab \n");
  printf("\t \tA control character?\n");
  printf("\n\t\t\b\b more special chars?\n\n");
}