Program to check whether the input alphabet is a vowel or not Write a C program to check whether the input alphabet is a vowel or not. ...
C program to shutdown or turn off computer C program code for Windows XP: #include <stdio.h> #include <stdlib.h> int main() { char ...
Implementation of Hamming Code Write a C program to Implement Hamming Code. #include<stdio.h> #include<conio.h> void main() { int data[7],rec[7],i,c1,c2,c3,c; ...
Reverse the order of each word of the string using pointers Write a C program to reverse the order of each word of the string using ...
Convert temperature from degree centigrade to Fahrenheit Write a C program to convert temperature from degrees Centigrade to Fahrenheit. #include<stdio.h> int main() { float celsius, fahrenheit; ...
Program to find Average of three Real Numbers Write a C program to an average of three real numbers. #include <stdio.h> main() { ...
Find Area of Square & Circumference of a Circle Write a C program to find the area of a square & circumference of a ...
Find the Sphere Surface Area and Volume of a Sphere Write a C program to find the sphere surface area and volume of a sphere. ...