473,386 Members | 1,821 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

c++ or C on unix

Hi,

I have been programming c, c++ on windows.

What is the difference in programming on Unix.. are there different
syntaxes, functions on Unix.
what are mandatory different steps on unix. Whst is the difference
between programming c++ on windows and unix. Which compiler one has to
use on unix.

Please put some light on this

Thanks

Lee

Dec 1 '06 #1
7 1947


On Dec 1, 12:24 pm, yang__...@ausi.com wrote:
Hi,

I have been programming c, c++ on windows.

What is the difference in programming on Unix.. are there different
syntaxes, functions on Unix.
what are mandatory different steps on unix. Whst is the difference
between programming c++ on windows and unix. Which compiler one has to
use on unix.
If you are planning to use Linux, g++ is your common choice.
>
Please put some light on this

Thanks

Lee
Dec 1 '06 #2

ya*******@ausi.com wrote:
Hi,

I have been programming c, c++ on windows.

What is the difference in programming on Unix.. are there different
syntaxes, functions on Unix.
what are mandatory different steps on unix. Whst is the difference
between programming c++ on windows and unix. Which compiler one has to
use on unix.
The gnu compiler collection is the usual choice on most unix systems.
There are some others but that is the major one used and comes
installed most of the time.

The standard library is of course the same though the bugs will of
course be different. Syntax and all that will be the same to. You'll
be working with Makefiles and/or autotools instead of VS projects.
Some people don't like this. I like the visual studio debugger a bit
better but for the most part I prefer working in XEmacs on linux.

GUI wise it will be completely different unless you used one of those
multi-platform libraries. Talking to the system is also very
different. Unix usually contains libraries that adhere to POSIX
standards....some win32 libs come close.

I prefer man and info to MSDN and you won't get a more powerful tool
than the unix shell.

But really, it's all the same. The function names might be
different...some of the steps will differ, but the basic theory behind
it all is all very much the same.

Dec 1 '06 #3
On Dec 1, 5:24 am, yang__...@ausi.com wrote:
Hi,

I have been programming c, c++ on windows.

What is the difference in programming on Unix.. are there different
syntaxes, functions on Unix.
what are mandatory different steps on unix. Whst is the difference
between programming c++ on windows and unix. Which compiler one has to
use on unix.
Been doing some programming on both, and as others have said, it's not
really that different. The problems comes when you need to do something
platform-specific like system-calls or GUI. When I did my Linux-work I
used Qt as the graphical framework, which was nice. The good thing
about Qt is that it provides much more than GUI functions, so if you
use Qt you can almost totally ignore the APIs of the system and work
agains Qt, unless you're doing very system specific things.

--
Erik Wikström

Dec 1 '06 #4
ya*******@ausi.com wrote:
What is the difference in programming on Unix.. are there different
syntaxes, functions on Unix.
Both C and C++ are programming languages which are defined by standards.
Therefore the only way that different syntaxes may appear in Unix regarding
your prior experience with C and C++ is if the compiler you use/will use
doesn't follow the standards or implements non-standard extensions.

Regarding the functions bit, as far as I see it all depends of the libraries
which were/will be present in your system. The standard libraries should be
the same in every platform but other libraries, like the windows API, will
not be available. So in the end it will be a question of what APIs are
available.

what are mandatory different steps on unix. Whst is the difference
between programming c++ on windows and unix. Which compiler one has to
use on unix.
That depends of what you consider what is "programming C++ on windows". For
example, if you wrote GUI applications using wxWidgets then I believe there
wouldn't be any difference. On the other hand, if you used some API which
isn't available beyond the windows platform then you will be forced to use
some other API, which will end up being something completely different.

Regarding compilers, I believe that GCC (which comes with g++, the C++
compiler) is available in every linux/*bsd/whatnot distribution.
Hope this helps
Rui Maciel
--
Running Kubuntu 6.10 with KDE 3.5.5 and proud of it.
jabber:ru********@jabber.org
Dec 1 '06 #5

Noah Roberts wrote in message ..
>
ya*******@ausi.com wrote:
>Hi,

I have been programming c, c++ on windows.

What is the difference in programming on Unix.. are there different
syntaxes, functions on Unix.
what are mandatory different steps on unix. Whst is the difference
between programming c++ on windows and unix. Which compiler one has to
use on unix.

The gnu compiler collection is the usual choice on most unix systems.
There are some others but that is the major one used and comes
installed most of the time.
Wow, they ported GNU to Unix? That's real irony since the 'NU' in GNU stands
for 'Not Unix'!

--
Bob R
POVrookie
Dec 1 '06 #6

BobR wrote:
Noah Roberts wrote in message ..

ya*******@ausi.com wrote:
Hi,

I have been programming c, c++ on windows.

What is the difference in programming on Unix.. are there different
syntaxes, functions on Unix.
what are mandatory different steps on unix. Whst is the difference
between programming c++ on windows and unix. Which compiler one has to
use on unix.
The gnu compiler collection is the usual choice on most unix systems.
There are some others but that is the major one used and comes
installed most of the time.

Wow, they ported GNU to Unix? That's real irony since the 'NU' in GNU stands
for 'Not Unix'!
Heh. Yup, I use g++ on Solaris. Well, technically the compiler is not
Unix, it just runs on Unix...

Dec 1 '06 #7

BobR wrote:
Wow, they ported GNU to Unix? That's real irony since the 'NU' in GNU stands
for 'Not Unix'!
Yeah, I can see how that name might confuse you. Thing is that it's a
historical anamoly. GNU, the orginization, named themselves after GNU,
the invisible operating system. They made tools for this operating
system before ever having a kernel. The kernel never really
materialized...there is Hurd, years and years later, in an alpha stage
or something but I doubt highly that it will ever be viable.

So really, GNU was *developed* on Unix as there was no kernel to
develop for. Unix was the only thing they could use until Linux came
along....which really pisses off RMS because now nobody's waiting
around for his kernel since we already have one.

So GNU, the orginization, is named after GNU, the operating system that
doesn't exist. They keep claiming that Linux is GNU...but not
GNU...it's all too confusing. It's easier to ignore the whole "not
unix" thing and think of GNU as a Unix tool development organization
that likes to start all their product names with 'g'.

Dec 1 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Matthew | last post by:
How would I go about creating a simple "hello world" program that will run in Unix. I am using MS Visual C++.
5
by: jrefactors | last post by:
when people say unix programmer, does it mean they write programs in unix environment,and those programs are run in unix platform? it is not necessary they are using unix function calls? I heard...
22
by: Ryan M | last post by:
I've been programming for a while, but most of my experience is on unix. How do C compilers work on operating systems that weren't written in C? And that have no libc? Compiling C on unix seems...
5
by: markus | last post by:
Hi, I have a question that deals with the standard c library VS (Unix) system calls. The question is: which header files (and functions) are part of the C library and which header files (and...
18
by: Sharon | last post by:
is microsoft going to develop .Net for Unix? or at lest CLR for Unix? 10x
15
by: Alpha | last post by:
I was told that Unix API can only be called using C++, ATL and MFC. However, I was also told that C# can do that through Pinvoke to a DLL that interfaces with the Unix API. Can someone direct me...
191
by: Xah Lee | last post by:
Software Needs Philosophers by Steve Yegge, 2006-04-15. Software needs philosophers. This thought has been nagging at me for a year now, and recently it's been growing like a tumor. One...
22
by: Xah Lee | last post by:
The Nature of the “Unix Philosophy” Xah Lee, 2006-05 In the computing industry, especially among unix community, we often hear that there's a “Unix Philosophy”. In this essay, i...
1
by: Marcin Wiszowaty | last post by:
Hello, I work at a company that has 2 development enviroments. One Unix which i dont know anything about and the othe vs.net 03 with MSSQL server 2000 for db. How can i cause applications...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.