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 […]

c programming

C program to display ASCII values

October 18, 2016 admin 0

C code for ASCII table /********************************************************************** 1. Printing ascii value using c program 2. C program to display ASCII values […]