function

  • 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…

5 years ago
  • 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…

5 years ago
  • 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…

5 years ago
  • 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…

5 years ago
  • 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…

5 years ago