To display list of C program files and directories.


#include
#include
#include

void main()
{
            clrscr();
            printf("********** List of C Program files **********\n");
            system("dir *.c /w");
            printf("\n********** List of C Program directories **********\n");
            system("dir /ad");
}

Comments

Popular posts from this blog

To convert hexadecimal to decimal numbers.

To convert hexadecimal to decimal numbers.