#include <stdio.h>


static char buf[256];

void get_str()
{
   printf("Enter your name: ");
   scanf("%s",buf); 
}

void print_str()
{  
   printf("Hello %s!\n",buf);
}

