Write a c program to create a directory in current working directory?

Answer :

#include<dos.h>

void main()
{
union REGS i,o;
i.h.ah=0x39;
i.x.dx="KP";
int86(0x21,&i,&o);
printf("Now Check TC/BIN Folder has New Created Folder That Folder Name Is KP ");
getch();
}

0 comments:

Post a Comment