C Program for Adding Two Numbers Using Recursion
C Program for Adding Two Numbers Using Recursion #include<stdio.h> int y; /* Function to add two numbers and return the
Read moreC Program for Adding Two Numbers Using Recursion #include<stdio.h> int y; /* Function to add two numbers and return the
Read moreC Program find whether a Number is Prime Or Composite using Recursion Prime Number: A number that is only divisible by
Read more#include <stdio.h> int main() { int circle_radius; float PI_VALUE=3.14, circle_area, circle_circumf; printf(“\nEnter radius of circle: “); scanf(“%d”,&circle_radius); circle_area = PI_VALUE
Read more#include <stdio.h> void main() { int num; printf(“Enter a number: \n”); scanf(“%d”, &num); if (num > 0) printf(“%d is a
Read more#include <stdio.h> int main(){ int num1, num2, quot, rem; printf(“Enter dividend: “); scanf(“%d”, &num1); printf(“Enter divisor: “); scanf(“%d”, &num2);
Read more#include<stdio.h> #include<string.h> int main(){ int i,j,count; char str[25][25],temp[25]; puts(“How many strings u are going to enter?: “); scanf(“%d”,&count); puts(“Enter Strings
Read moreC program to convert time in Hours:Minutes:Seconds to seconds /* C program to convert time in hours:minutes:seconds to seconds */
Read moreSelection Sort Algorithm Selection sort is an algorithm that selects the smallest element from an unsorted list in each iteration
Read moreC Program to Check whether an Alphabet is Vowel or Consonant This program takes the character value(entered by user) as
Read moreMerry Christmas – Program for Christmas Tree in C To print a Christmas tree, we are printing pyramids of various sizes
Read more