Code Vidyalay
A Computer science portal for geeks
Toggle navigation
Menu
Home
Syllabus Of BCA
Basic C Programs
Computer Network
C++ Programming
DBMS Notes
System Analysis and Design
Data Structure
Operating System
C++ Interview Questions
DBMS Interview Questions
Computer Networking Interview Questions
Data Structure Interview Questions
SAD Interview Questions
Tricky Programs
PC Package
11 Oct 2019
C program to ring a bell
October 11, 2019
Amitraj
C program to ring a bell:-
#include<stdio.h>
int main()
{
//following printf will ring a beep sound 3 times.
printf("\a \a \a");
//Note: Here \a stands for Alert
//Each \a will ring a one beep sound
return 0;
}
Email This
BlogThis!
Share to X
Share to Facebook
← Newer Post
Home
Older Post →
Translate
Popular Posts
Bit and Byte Oriented Protocols | Computer Network
Bit Oriented Protocol - ->A synchronous communications protocol requiring only a single bit to communicate a command signal to the ta...
DBTG Update Facility : DBMS
DBTG Update Facility - DBTG mechanisms are available to update information in the database. 1. To create a new record of type <re...
Network Structure in Linux
Network Structure 1. Networking is a key area of functionality for Linux. –> It supports the standard Internet protocols for UNIX to...
DBTG Set Processing Facility : DBMS
DBTG Set Processing Facility - Mechanisms are provided for inserting records into and removing records from a particular set occurrence...
DBTG Data Retrieval Facility : DBMS
DBTG Data Retrieval Facility The DBTG data manipulation language consists of a number of commands that are embedded in a host language. ...
Advantages / Benefits of Exception Handling
Advantages of Exception Handling -> Following are the advantages of exception handling: 1. Exception handling separates the excepti...
Friend Class and Friend Function in C++
Friend - Class:- A friend class can access private and protected members of other class in which it is declared as friend. It is somet...
Information Gathering Techniques in System Analysis
Information Gathering Techniques The main aim of fact finding techniques is to determine the information requirements of an organization ...
Program to print Heart pattern
Program to print Heart pattern- Have you tried generating different patterns in C or C++ ? I know its easy but I am sharing what I trie...
multiple inheritance in C++
2.) multiple inheritance Multiple inheritance occurs when a class inherits from more than one base class. So the class can inherit fea...
Computer Science Subjects
Home
Syllabus Of BCA
Basic C Programs
C++ Programming
System Analysis and Design
Data Structure
PC Package
Tricky Programs
Computer Network
Operating System
DBMS Notes
SAD Interview Questions
Computer Networking Interview Questions
DBMS Interview Questions
Data Structure Interview Questions
C++ Interview Questions