#include<iostream.h>
void show(int j)
{
int k = 45 ; // Local Variable Declaration
cout<<"\n value of j : "<<j;
cout<<"\n value of k : "<<k;
}
void main( )
{
int i =200; // Local Variable Declaration
show( i);
}
Labels: C++ Codes, C++ Other Codes
Copyright © 2012 http://codeprecisely.blogspot.com. All rights reserved |Term of Use and Policies| |
---|
0 comments:
Post a Comment