indirection operator

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

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

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

Basics of Pointers In C Programming Language

In today's video tutorial lets learn basics of pointers in C programming language. Think of it as base of a…

5 years ago