Sounds an alert and then prints the some text - C Data Type

C examples for Data Type:Introduction

Description

Sounds an alert and then prints the some text

Demo Code

#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
}

Result


Related Tutorials