Is there any difference in C that is written in Windows and Unix?
I teach C as well as C++ but some of my students have come back saying some of the sample programs do not run for them in Unix. Unix is alien to me. Unfortunately no experience with it whatsoever. All I know is to spell it. If there are any differences then I should be advising our department to invest on systems for Unix as currently there are no Unix systems in our lab. I do not want my students to feel that they have been denied or kept away from something.
|
|
|||||||||||||||||||||
|
|
That kind of problems usually appear when you don't stick to the bare C standard, and make assumptions about the environment that may not be true. These may include reliance on:
Anyhow an example of program that do not compile on *NIX would be helpful, we could give you preciser suggestions. The details on the program am yet to get. The students were from our previous batch. Have asked for it. turbo C is what is being used currently. As said in the comment, please drop Turbo C and (if you use it) Turbo C++, nowadays they are both pieces of history and have many incompatibilities with the current C and C++ standards (and if I remember well they both generate 16-bit executables, that won't even run on 64 bit OSes on x86_64). There are a lot of free, working and standard-compliant alternatives (VC++ Express, MinGW, Pelles C, CygWin on Windows, and gcc/g++ is the de-facto standard on Linux), you just have to pick one. |
|||||||||
|
|
The language is the same, but the libraries used to get anything platform-specific done are different. But if you are teaching C (and not systems programming) you should easily be able to write portable code. The fact that you are not doing so makes me wonder about the quality of your training materials. |
||||
|
|
|
The standard libraries that ship with MSVC and those that ship with a typical Linux or Unix compiler are different enough that you are likely to encounter compatibility issues. There may also be minor dialectic variations between MSVC and GCC. The simplest way to test your examples in a unix-like environment would be to install Cygwin or MSYS on your existing Windows kit. These are based on GCC and common open-source libraries and will behave much more like the C compiler environment on a unix or linux system.
While getting Linux installed in your lab is probably a useful thing to do (Use VMWare player or some other hypervisor if you can't get funding for new servers) you can use either of the above toolchains to get something that will probably be 'close enough' for your purposes. You can learn unix as takes your fancy, and both Cygwin and MSYS will give you a unix-like environment that could give you a bit of a gentle intro in the meantime. |
||||
|
|
|
C syntax must be the same if both Windows and Unix compilers adhere to the same C standard. I was told that MS compilers still don't support C99 in full, although Unix compilers are up to speed, so it seems C89 is a lowest common denominator. However in Unix world you typically will use POSIX syscalls to do system stuff, like IPC etc. Windows isn't POSIX system so it has different API for it. |
|||
|
|
|
There is this thing called Ansi C. As long as you code purely Ansi C, there should be no difference. However, this is a rather academic assumption. In real life, I have never encountered any of my codes being portable from Linux to Windows and vice versa without any modification. Actually, this modification*S* (definitely plural) turned out into a vast amout of pre-processor directives, such as As you may imagine, this is totally contrary to readable and debugable code, but that was what worked ;-) Besides, you have got to consider things already mentioned: UTF-8 will sometimes knock out linux compilers... |
|||
|
|
|
There should be no difference between the C programming language under windows or *nix,cause the language is specified by the ISO standard. |
|||
|
|
|
The C language itself is the portable from Windows to Unix. But operating system details are different and sometimes those intrude into your code. For instance Unix systems typically use only "\n" to separate lines in a text file, while most Windows tools expect to see "\r\n". There are ways to deal with this sort of difference in a way that gets the C runtime to handle it for you but if you aren't careful you know about them, it's pretty easy to write OS specific C code. I could that you run a Unix in a Virtual Machine and use that to test your code before you share it with your students. |
|||
|
|
|
I think its critical that you familiarize yourself with unix right now. An excellent way to do this is a with a Knoppix CD. Try to compile your programs under Linux using gc, and when they don't work, track down the problems (#include <windows>?) and make it work. Then return to windows, and it'll likely compile ok. In this way, you will discover your programs become cleaner and better teaching material, even for lab exercises on windows machines. |
|||
|
|
|
A common problem is that
Similarly, you need to avoid anything that causes undefined behavior. |
|||
|
|