Ashish
Ashish

Reputation:

Working on UNIX/Linux for C programming on Windows 8.1

Do I need to download any UNIX / Linux software for starting C programming on Windows 8.1?

Upvotes: 0

Views: 174

Answers (1)

Stephen Kitt
Stephen Kitt

Reputation: 2881

No, to program in C on Windows you can use an IDE such as Code::Blocks or Visual Studio; if you're just looking for a C compiler, check out mingw-w64.

If you're trying to develop in C on a Unix/Linux system and target Windows, you can find an appropriate cross-compiler on mingw-w64 (and probably in your Linux distribution if you're running Linux).

Upvotes: 2

Related Questions