C Program to Generate Multiplication Table
Multiplication Table Up to 10 #include <stdio.h> int main() { int n, i; printf(“Enter an integer: “); scanf(“%d”, &n); for
Read moreC Tutorial
Multiplication Table Up to 10 #include <stdio.h> int main() { int n, i; printf(“Enter an integer: “); scanf(“%d”, &n); for
Read moreUsing if Statement #include <stdio.h> int main() { double n1, n2, n3; printf(“Enter three different numbers: “); scanf(“%lf %lf %lf”,
Read moreReverse an Integer #include <stdio.h> int main() { int n, rev = 0, remainder; printf(“Enter an integer: “); scanf(“%d”, &n);
Read moreThe Fibonacci sequence is a sequence where the next term is the sum of the previous two terms. The first
Read moreThe factorial of a positive number n is given by: factorial of n (n!) = 1 * 2 * 3
Read moreProgram to Check Leap Year #include <stdio.h> int main() { int year; printf(“Enter a year: “);
Read moreFind LCM of two numbers in C What is LCM The Least Common Multiple ( LCM ) is also referred to as
Read moreFunctions C Human is an intelligent species, but still cannot perform all of life’s tasks all alone. He has to
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 more