#include <stdio.h> void ShmilyB( const char* s ) { putchar( '\t' ); puts( s ); } int main( void ) { ShmilyB( "Hello" ); ShmilyB( "Ming Ri" ); }