/* Converts UNIX type text file to DOS format by adding CR's to the LF's */

#include <stdio.h>
#include <conio.h>


main(int argc,char **argv)
{

    printf("%d\n",argc);
    printf("%s\n",argv[0]);
    printf("%s\n",argv[1]);


}