Search Results

2
votes
6answers
3k views

Using Visual Studio’s ‘cl’ from a normal command line

Visual Studio 2003 and 2005 (and perhaps 2008 for all I know) require the command line user to run in the 'Visual Studio Command Prompt'. When starting this command prompt it sets various environm …
0
votes

How to create a file with a given size in Linux?

The trouble with the approaches using dd and perl is that they actually have to write every byte of the file. Using an approach like this you wouldn't have to. #include <stdio.h …