#include<iostream.h>
void function()
{
static int k=10;
cout<<k<<endl ;
k++;
}
void main()
{
clrscr();
int i=10;
for(i=0;i<10;i++)
{
function();
}
}
void function()
{
static int k=10;
cout<<k<<endl ;
k++;
}
void main()
{
clrscr();
int i=10;
for(i=0;i<10;i++)
{
function();
}
}
No comments:
Post a Comment