Write a c program to create a directory in current working directory?
Ans:
#include
void main()
{
union REGS i,o;
i.h.ah=0x39;
i.x.dx="ravan";
int86(0x21,&i,&o);
getch();
}

0 comments:

Followers

 
C - Programming -