RingTheBell

Causes the console speaker to beep

Local Servers:blocking
Remote Servers:N/A
Classification:3.12 and above, 4.x, 5.x, 6.x
Service:Screen Handling

Syntax

  #include <nwconio.h>  
   
  void RingTheBell  (void); 
  

Return Values

This function does not return a value.

Remarks

This function can be repeated several times in a row, to increase the duration of the beep.

Example

  #include <stdio.h>  
  #include <nwconio.h>  
  main()  
  {  
     printf("\nError\n");  
     RingTheBell();  
  }