pow

  • C

C Program To Check If Point Lies Inside, Outside or On The Circle

Given the coordinates(cx, cy) of center of a circle and its radius, write a C program that will determine whether…

5 years ago
  • C

C Program to Find First and Last Digit of a Number

Write a C program to find first and last digit of the user input number, without using looping. Related Read:…

5 years ago
  • C

C Program To Convert Cartesian To Polar Co-ordinates

Write a C program to receive Cartesian co-ordinates(x, y) of a point and convert them into Polar co-ordinates(r, θ). Related…

5 years ago
  • C

C Program to print Armstrong Numbers Between Two Integers

An Armstrong number or Narcissistic number is an n-digit base b number such that the sum of its (base b)…

5 years ago
  • C

Calculate Power of a Number using pow(): C Program

Two numbers are entered through the keyboard. Write a program to find the value of one number raised to the…

5 years ago