C program to print pascal triangle

C program to print pascal triangle #include <stdio.h> long factorial(int); int main() { int i, n, c; printf(“Enter the number of rows you wish to

Read more

C Program example to Find Quotient and Remainder

C Program example to Find Quotient and Remainder #include<stdio.h> int main() { printf(“\n\n\t\tEduguru – C prgram example\n\n\n”); int c, d,

Read more

C Program to find the Sum of First n Natural numbers using for loop

C Program to find the Sum of First n Natural numbers using for loop   #include <stdio.h> int main() {

Read more

Matrix multiplication program in C

Matrix multiplication program in C Matrix multiplication in C language to calculate the product of two matrices (two-dimensional arrays). A

Read more

Sorting program in c

Sorting program in c /* * C program to accept N numbers and arrange them in an ascending order */

Read more

Asterisk dialplan function GotoIf : Asterisk command gotoif

The GotoIf( ) Application GotoIf( ) uses a special syntax, often called the conditional syntax: GotoIf(expression?destination1:destination2) If the expression evaluates

Read more

Asterisk DialStatus Channel Varriable

Asterisk channel variable DIALSTATUS Contains a text string signifying result of the last dial attempt: ANSWER: Call is answered. A

Read more

Asterisk cmd MYSQL

This is an ADD-ON of asterisk, is not installed by default and must be downloaded and installed with the asterisk-addons

Read more

Asterisk queue callback

SQL Table Structure If using the dialplan below, put the following table into a database called ‘acd‘. CREATE TABLE `bit_callers`

Read more

Asterisk – best practice to play multiple sound files in .call files

If you want to play multiple sound file with .call then you can send it like this: Setvar: file_max=2 Setvar:

Read more