Skip to main content

Posts

Showing posts with the label Uses of Pointer in Function programProgram

Pointer to a Function in C Program #DOTC_Mdb

Pointer to a Function in C Program.   Hi Everyone, Today we will discuss about Pointer to a Function in C Program and in other word we can say uses of Function in Pointers. In my previous blogs we already discussed about Pointers and Functions so please go through that blog carefully before this topic. Previous topics like Pointers and Functions you can able to see it in my archive folder. dheeraj60.blogspot.com Let’s Discuss about Pointer to a function or Pointer uses in Function programs. Just like variable pointers can also be passed to a function. C program allows passing a pointer to a function. For doing this, we simply declare the function parameter as a pointer type. Let’s understand with example of passing pointer to a function in C.   #include <stdio.h> #include <stdlib.h>   void increment(int   *incr, int a) {     *incr = *incr+a; } int main() {     int salary=0, incentive=0;     printf(" Please enter the employee current salary:");