C examples for Data Type:Introduction
Sounds an alert and then prints the some text
#include <stdio.h> int main(void) { printf("\a"); // sound alert printf("this is a test \"!!!!\"\n"); return 0;//from w ww.ja va2 s . c o m }