c programming

C program to Convert Decimal To Binary

October 25, 2016 admin 0

Decimal to Binary Converter in C using inbuilt function itoa /********************************************************************** Decimal to binary in c **********************************************************************/ #include <stdio.h> #include <stdlib.h> #include […]

c programming

C Program to find GCD Using for loop and if Statement

October 23, 2016 admin 0

/********************************************************************** GCD Using for loop and if Statement using C Program **********************************************************************/ #include <stdio.h> int main() { int number_1, number_2, […]

c programming

How to calculate power of a number using C Program

October 23, 2016 admin 0

/********************************************************************** How to Get power of number in c **********************************************************************/ #include<stdio.h> int main(){ int power, number, i = 1; long […]

c programming

C Program to calculate frequency of vowels in a string

October 18, 2016 admin 0

/********************************************************************** C Program to calculate frequency of vowels in a string **********************************************************************/ #include <stdio.h> #include <conio.h> void main() { int […]