C-Tutorial

Sunday, 8 December 2019

sine series 1-x^2/2!+x^4/4!-x^6/6!+.....

Sunday, December 08, 2019 0
/* Program for sine series 1-x^2/2!+x^4/4!-x^6/6!+..... */ #include<stdio.h> #include<conio.h> #include<math.h> void main() {     double...
Read More

program to convert hexadecimal to decimal

Sunday, December 08, 2019 0
/* program to convert number from hexadecimal to decimal*/ #include <stdio.h> #include <string.h> #include <math.h> void...
Read More

Program for convert binary to decimal

Sunday, December 08, 2019 0
/*  Program for convert binary to decimal */ #include <stdio.h> #include <math.h> void main() {     long int...
Read More

Program for convert octal to decimal

Sunday, December 08, 2019 0
/*  Program for convert octal to decimal */ #include <stdio.h> #include <math.h> void main() {     long int...
Read More

convert decimal to binary / octal / hexadecimal

Sunday, December 08, 2019 0
/* Program for convert decimal to binary / octal / hexadecimal */ #include <stdio.h> #include <conio.h> void main() { long n; int...
Read More

program for histogram given array elements

Sunday, December 08, 2019 0
/* program printing stars equal to each element in the list */ #include<stdio.h> #include<conio.h> void main() { int a[20], i,...
Read More

Array order reversal without using second array

Sunday, December 08, 2019 0
/*   Array order reversal without using second array */ #include<stdio.h> void main() {    int arr[50], i, j, num,...
Read More

sum of factorials in between range

Sunday, December 08, 2019 0
/* sum of factorials in between m and n */ #include<stdio.h> #include<conio.h> void main() { int i, j, m, n, fact=1, sum=0; clrscr(); printf("\n...
Read More
Page 1 of 2812345...28Next »Last