Logo 
Search:

C Programming Articles

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

Example 8 of using functions

Posted By: Adam Evans     Category: C Programming     Views: 1492

Example 8 of using functions.

Code for Example 8 of using functions in C Programming

#include <stdio.h>
void  (int *k)        // D
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 8 of using functions Or get search suggestion and latest updates.

Adam Evans
Adam Evans author of Example 8 of using functions is from London, United Kingdom.
 
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!