Featured Post

functional pointer using c


#include
#include
#include
int add(int i,int j){
   return i+j;
}
int main(int args,char *argv[]){

       int (*funcPtr)(int,int);
        funcPtr=&add;

        int sum =(*funcPtr)(2,3);
    printf("%d\n",sum);

  return 0;
}

Comments

Popular posts from this blog

[Inside AdSense] Understanding your eCPM (effective cost per thousand impress...