top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

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

0 votes
240 views
Write a c program to create a directory in current working directory?
posted May 5, 2017 by Pooja Singh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
#include<stdio.h>
main()
{
    mkdir("DIRECTORY", 0777);
}
answer May 8, 2017 by Chirag Gangdev
...