UMBC CMSC104 CSEE

What is the output?

#include <stdio.h>

void here( void );
void there( void );
void me( void );

int main( void )
{

  here( );
  me( );
  there( );

  return 0;

}

void me ( void )
{
  int j;

  j = 4 * 5;

}

void here( void )
{

  int v;

  v = 6 * 5;
  printf( "The value of v here is %d\n", v );

}

void there( void )
{

  int v;
  
  v += 5;
  printf(" The value of v there is %d\n", v );

}


UMBC | CSEE |