Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Homework HelpRSS Feeds

Example 2 of using function

Posted By: Reinhard Fischer     Category: C Programming     Views: 1250

Example 2 of using function.

Code for Example 2 of using function in C Programming

main ( )
{
    int i;
    i = 0;
   printf (“ The value of i before call %d \n”, i);
    f1 (&i);        // A
   printf (“ The value of i after call %d \n”, i);
}
void  (int *k)        // B
{
    *k = *k + 10;    // C
}
  
Share: 


Didn't find what you were looking for? Find more on Example 2 of using function Or get search suggestion and latest updates.

Reinhard Fischer
Reinhard Fischer author of Example 2 of using function is from Frankfurt, Germany.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!