C switch case program to read weekday number and print weekday name

C Programming Tutorial

C switch case program to read weekday number and print weekday name This program will read weekday number (0-6) and print weekday name (Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday)   Weekday Number Weekday Name 0 Sunday 1 Monday 2 Tuesday 3 Wednesday 4 Thursday 5 Friday 6 Saturday Program Example: #include <stdio.h> int main() … Read more

webrtc implementation asterisk : Webphone

webrtc implementation on asterisk

webrtc implementation on asterisk with Webphone What is WebRTC WebRTC is a free, open project that provides browsers and mobile applications with Real-Time Communications (RTC) capabilities via simple APIs. The WebRTC components have been optimized to best serve this purpose.The mission of WebRTC is to enable rich, high-quality RTC applications to be developed for the … Read more

C Program to Check Even or Odd number

turbo c++ program editor

C Program to Check Even or Odd number : C Program Example An even number is an integer that is exactly divisible by 2. Example: 2,4,6, 8,10,12,14,16 etc An odd number is an integer that is not exactly divisible by 2. Example: 1, 3,5,7, 9,11, 15,17 etc C Program start from here #include int main() … Read more

Views in MySQL : MySQL Views

MySQL Cluster

Summary: in this tutorial, you are going to learn about MySQL View. We will explain how MySQL implements views. MySQL supports database views or views since version 5.X. In MySQL, almost features of views conform to the SQL: 2003 standard. MySQL process queries to the views in two ways: MySQL creates a temporary table based on the view definition … Read more

Installing LAMP on RHEL or Centos 7

lamp installation

Installing LAMP on RHEL or Centos 7  Install httpd services – Web service # yum install httpd Restart httpd resvices # systemctl restart httpd Check status of httpd services # systemctl status httpd Stop httpd services # systemctl stop httpd Start httpd services  # systemctl start httpd Install php # yum install php php-mysql php-pdo … Read more

Install Asterisk 13 and PJSIP on CentOS 6

install asterisk 13

Install Asterisk 13 and PJSIP on CentOS 6+ 64 bit Step 1 – Setup the environment The first step is to install the dependencies required to build the PJSIP libraries and Asterisk 13. Using the CentOS yum package manager we’ll update all currently installed packages to their latest version and then install some of the … Read more

Curl in html forms : Use of curl

curl

Curl in html forms : Use of curl Forms are the general way for the user to enter data in, and then press some kind of ‘OK’ or ‘Submit’ button to get that data sent to the server. The server then typically uses the posted data to decide how to act. Like using the entered … Read more

installation and configuration of fail2ban on CentOS 6

fail2ban

What is Fail2Ban Fail2Ban is an intrusion prevention software framework that protects computer servers from brute-force attacks Fail2ban is a daemon that can be run on your server to dynamically block clients that fail to authenticate correctly with your services repeatedly. Written in the Python programming language. Fail2ban is a free and open source framework. … Read more

Switch Case Control Structure in C

C Programming Tutorial

In real life we are often faced with situations where we are required to make a choice between a number of alternatives rather than only one or two. For example, what subject to choose after 10th, which school or college to join or which place to visit. We almost always end up making a wrong … Read more