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

Answer 
#include<stdio.h>
#include<dos.h>
void main()
{
   union REGS i,o;
   i.h.ah=0x39;
   i.x.dx="ravan";
   int86(0x21,&i,&o);   
   getch();
}
 

+ Report
Total Preview: 925
Write a c program to create a directory in current working directory?
Copyright © 2024. Powered by Intellect Software Ltd