Download BCS-042 Introduction to Algorithm Design June 2018

Download BCS-042 Introduction to Algorithm Design June 2018 BCS-051 Introduction to Software Engineering Download BCS-051 Introduction to Software Engineering June 2018 Download BCS-051 Introduction to Software Engineering June 2018  

Download BCS-041 Fundamental of Computer Networks June 2018

ignou

Download BCS-041 Fundamental of Computer Networks June 2018 BCS-041 Fundamental of Computer Networks Download BCS-041 Fundamental of Computer Networks June 2018

Download BCS-040 Statistical Techniques June 2018

ignou

Download BCS-040 Statistical Techniques June 2018   BCS-040 Statistical Techniques Download BCS-040 Statistical Techniques June 2018

Download BCS-031 Programming In C++ June 2018

ignou

Download BCS-031 Programming In C++ June 2018   BCS-031 Programming In C++ Download BCS-031 Programming In C++ June 2018

Download BCS-012 Basics Mathematics June 2018

ignou

Download BCS-012 Basics Mathematics June 2018 BCS-012 Basics Mathematics Download BCS-012 Basics Mathematics June 2018

Download BCS-011 Computer Basics and PC Software june 2018

ignou

Download BCS-011 Computer Basics and PC Software june 2018 BCS-011 Computer Basics and PC Software Download BCS-011 Computer Basics and PC Software June 2018  

Convert audio files for Asterisk

vicidial goautodial support

Convert audio files for Asterisk Converting to sln format Starting from Asterisk 1.2.0, the .sln (SLINEAR) format seems to be the preferred format. To convert wav file to sln, use the following command: sox foo-in.wav -t raw -r 8000 -s -w -c 1 foo-out.sln Note that sox v14.3.0 and above (installed in Ubuntu 9.10), the … Read more

Sorting program in c

c program to sort array

Sorting program in c /* * C program to accept N numbers and arrange them in an ascending order */ #include <stdio.h> void main() { int i, j, a, n, number[30]; printf(“Enter the value of N \n”); scanf(“%d”, &n); printf(“Enter the numbers \n”); for (i = 0; i < n; ++i) scanf(“%d”, &number[i]); for (i … Read more

Write a program to convert temperature Fahrenheit to Centigrade

temperature Fahrenheit to Centigrade degrees c program

Write a program to convert temperature Fahrenheit to Centigrade Input temperature in fahrenheit from user. Store it in some variable say fahrenheit. Apply the temperature conversion formula celsius = (fahrenheit – 32) * 5 / 9. Print the value of celsius. Example Input Temperature in fahrenheit = 205 Output Temperature in celsius = 96.11 C Temperature conversion formula … Read more

C program to reverse words in a string

c program reverse-words-in-string

C program to reverse words in a string This profram will invert each word occurring in the input string. Algorithm is very simple just scan the string and keep on storing characters until a space comes. If a space is found then we have found one word so we append null terminator and then reverse the … Read more