|
Related Questions |
View Answer |
 |
How can I read a directory in a C program? |
View Answer |
 |
How do I create a directory? How do I remove a directory (and its contents)? |
View Answer |
 |
How can I find out how much memory is available? |
View Answer |
 |
How can I allocate arrays or structures bigger than 64K? |
View Answer |
 |
I thought that using large model meant that I could use more than 64K of data! |
View Answer |
 |
How can I invoke another program (a standalone executable, or an operating system command) from within a C program? |
View Answer |
 |
How can I call system when parameters (filenames, etc.) of the executed command arent known until run time |
View Answer |
 |
How do I get an accurate error status return from system on MS-DOS? |
View Answer |
 |
How can I invoke another program or command and trap its output? |
View Answer |
 |
How can my program discover the complete pathname to the executable from which it was invoked?
|
View Answer |
 |
How can I automatically locate a programs configuration files in the same directory as the executable? |
View Answer |
 |
How can I open files mentioned on the command line, and parse option flags? |
View Answer |
 |
Is exit(status) truly equivalent to returning the same status from main? |
View Answer |
 |
How can I read in an object file and jump to locations in it? |
View Answer |
 |
How can I implement a delay, or time a users response, with sub-second resolution? |
View Answer |
 |
How can I trap or ignore keyboard interrupts like control-C? |
View Answer |
 |
How can I handle floating-point exceptions gracefully? |
View Answer |
 |
How can I ensure that integer arithmetic doesnt overflow? |
View Answer |
 |
What are near and far pointers? |
View Answer |
 |
But I cant use all these nonstandard, system-dependent functions, because my program has to be ANSI compatible! |
View Answer |