Free Download IT Projects Blog
Here is a C program in which function is formed that prints Namaste if user is Indian and Bonjour if the user is French. #include<stdio.h> #include<conio.h> void namaste(); // Function...
Write a C Program to find whether the entered number is even, odd . #include<stdio.h> #include<conio.h> void main() { int a; clrscr(); ...
C Program to find the sum of digits of the number with full explanation of the program. #include<stdio.h> #include<conio.h> int sumdig(int n); void main() { int n,s; ...
Write a C Program to find the given character is vowel or consonant. This program is used to find out whether the entered character is vowel or consonant. #include<stdio.h> #include<conio.h> void main() { ...