Logo 
Search:

C Programming Articles

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

Example of passing variable values to a function

Posted By: Lucina Fischer     Category: C Programming     Views: 2315

Example of passing variable values to a function.

Code for Example of passing variable values to a function in C Programming

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


Didn't find what you were looking for? Find more on Example of passing variable values to a function Or get search suggestion and latest updates.

Lucina Fischer
Lucina Fischer author of Example of passing variable values to a 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!