pointer

  • 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

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…

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

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 Pointers

Lets write a C program to swap 2 numbers using pointers and function. When we call the function, we pass…

5 years ago