This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/_bprintf.c

12 lines
247 B
C

#include <stdio.h>
void main( int argc, char * argv[] )
{
char file_name[9];
char file_ext[4];
_bprintf( file_name, 9, "%s", argv[1] );
_bprintf( file_ext, 4, "%s", argv[2] );
printf( "%s.%s\n", file_name, file_ext );
}