Answers for "how to get variable from another function in c"

0

how to get variable from another function in c

int function1()
{
  int F;
  printf("enter any value");
  scanf("%d",&F); 
  printf("Value is %d",F);
}
Posted by: Guest on May-08-2021

Code answers related to "how to get variable from another function in c"

Browse Popular Code Answers by Language