• C

C Program To Find If a Point Lies Inside Triangle or Not

Write a function to compute the distance between two points and use it to develop another function that will compute…

  • C

C Program To Calculate Area of a Triangle using Pointers

Lets write a C program to calculate area of a Triangle when their sides are input by the user. Lets…

  • C

C Program To Evaluate sin(x) = x – (x^3)/3! + (x^5)/5! + (x^7)/7! + ..

Write a C function to evaluate the series sin(x) = x - x3/3! + x5/5! - x7/7! ... up to…

  • C

C Program To Shift Variable Values Circularly To Right

Given three variables x, y, z write a function to circularly shift their values to right. In other words if…

  • C

C Program To Calculate Average and Percentage of Marks Obtained

Write a function that receives marks received by a student in 3 subjects and returns the average and percentage of…

  • C

Calculate Sum, Average, Variance and Standard Deviation: C Program

Write a function that receives 5 integers and returns the sum, average and standard deviation of these numbers. Call this…

  • C

Pointer To A Pointer In C Programming Language

Lets write C program to learn the concept of pointer pointing to another pointer. It's also called as Multiple Indirection…

  • C

C Program To Find Size of Pointer Variables

Lets write a C program to find out the size or the number of bytes occupied by pointer variables of…

  • C

C Program To Find Area and Circumference of Circle using Pointer

Lets write a C program to calculate area and circumference or perimeter of a Circle using pointer and function. Related…

  • C

C Program To Swap Two Numbers using Function

Lets write a C program to swap 2 numbers using function/method. When we call a function and pass the actual…