• C

C Program To Find Prime Factors of a Number

A positive integer is entered through the keyboard. Write a function to obtain the prime factors of this number. For…

  • C

C Program To Calculate One Number Raised To Another using Function

Write a function power( a, b ), to calculate the value of a raised to b. Note: In today's video…

  • C

C Program To Find Factorial of a Number using Function

Write a function to calculate the factorial value of any integer entered through the keyboard. Related Read: C Program To…

  • C

C Program To Generate Fibonacci Series using Function

Lets write a C program to generate Fibonacci Series using function / method. Related Read: Fibonacci Series using While loop:…

  • C

C Program To Find Armstrong Numbers Between Range using Function

In today's video tutorial lets find all the Armstrong numbers or Narcissistic numbers between user entered range, using function /…

  • C

C Program To Find Armstrong Numbers Between 1 and 500 using Function

Lets write a C program to find Armstrong number or Narcissistic number from 1 to 500 using function. Problem Statement…

  • C

C Program To Find Biggest of Three Numbers using Function

In this video tutorial you'll learn how to find biggest of three integer numbers using function. Related Read: Nested if…

  • C

C Program To Find Biggest of Two Numbers using Function

In this video tutorial you'll learn how to find biggest of two integer numbers using function. Related Read: Biggest of…

  • C

C Program To Check Leap Year or Not using Function

Any year is entered through the keyboard. Write a function to determine whether the year is a leap year or…

  • C

Addition of 2 Numbers using Function: C Program

In this video tutorial lets learn how to add two integer numbers using functions in C programming language. Related Read:…