LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


View Poll Results: Wich language?
C 45 28.13%
C++ 38 23.75%
Perl 12 7.50%
Java 22 13.75%
Python 26 16.25%
Other 17 10.63%
Voters: 160. You may not vote on this poll

Reply
  Search this Thread
Old 09-06-2003, 03:28 AM   #61
Quanswers
LQ Newbie
 
Registered: Sep 2003
Location: Thousand Oaks CA
Distribution: CrunchBang 11 "Waldorf"
Posts: 4

Rep: Reputation: 0

Perl because it usually works as advertised and
you don't have to fool around compiling it.
 
Old 09-06-2003, 04:24 AM   #62
Mohsen
Member
 
Registered: Feb 2003
Location: Iran
Distribution: Solaris 10
Posts: 201

Rep: Reputation: 30
1. Pascal
2. C
3. C++
 
Old 09-06-2003, 01:06 PM   #63
mrPhantastik
LQ Newbie
 
Registered: Aug 2003
Posts: 17

Rep: Reputation: 0
Basic

Not Visual !

Because It's truly simple..
 
Old 09-06-2003, 01:14 PM   #64
Looking_Lost
Senior Member
 
Registered: Apr 2003
Location: Eire
Distribution: Slackware 12.0, OpenSuse 10.3
Posts: 1,120

Rep: Reputation: 45
It was Pascal that was used the first time I took programming in a classroom environment

Nowadays if I had I choice I'd go for C for out and out learning programming i.e if,for,while,case back to the good old solid basics
 
Old 09-09-2003, 12:05 AM   #65
vanquisher
Member
 
Registered: Aug 2003
Location: Hyderabad, India
Posts: 126

Rep: Reputation: 15
Quote:
Originally posted by mrPhantastik
Basic

Not Visual !

Because It's truly simple..
The other day I was reading ESR's `How to become a hacker' and he doesn't seem to like starting with Basic...He says it' s a poorly designed language and VB in particular is awful and teaches bad programming habits( ESR said that, not me ). So, guys, what do you people think? I'm thinking of getting into basic...any suggestions?
 
Old 09-09-2003, 05:47 AM   #66
UltimaGuy
Member
 
Registered: Aug 2003
Location: Chennai, India
Distribution: PCLinuxOS .92, FC4
Posts: 840

Rep: Reputation: 32
Don't ever go into basic. Jump into either C or C++/Java and it will help you more. If you want to become rapidly productive, have a go at perl.
 
Old 09-09-2003, 06:05 AM   #67
vanquisher
Member
 
Registered: Aug 2003
Location: Hyderabad, India
Posts: 126

Rep: Reputation: 15
Quote:
Originally posted by UltimaGuy
Don't ever go into basic. Jump into either C or C++/Java and it will help you more. If you want to become rapidly productive, have a go at perl.
Thanx for the suggestion. I'm comfortable with C/C++/Perl as of now and I can do some basic stuff in python and java. Just wanted to learn basic, hopefully a crazy thought. Now, no more intentions to learn basic. Also started programming Linux with C. And, after reading whay you said, I'll never ever think of basic againl
 
Old 09-09-2003, 06:55 AM   #68
UltimaGuy
Member
 
Registered: Aug 2003
Location: Chennai, India
Distribution: PCLinuxOS .92, FC4
Posts: 840

Rep: Reputation: 32
Linux programming

If you want to go into Linux programming, take a look into Advanced Linux Programming .
 
Old 09-11-2003, 01:55 AM   #69
tlm009
LQ Newbie
 
Registered: Sep 2003
Posts: 2

Rep: Reputation: 0
I think the scritpt language is best language to begin with,
such as php and javasrcript.C and C++ is so hard to beginer.
hehe just my viewpoint!
 
Old 12-19-2003, 04:41 AM   #70
adengua
Member
 
Registered: Oct 2003
Posts: 32

Rep: Reputation: 15
Post Visual Perl

where can i get FREE FREE Visual Perl SDK for linux
 
Old 12-19-2003, 06:21 AM   #71
LinuxLala
Senior Member
 
Registered: Aug 2003
Location: New Delhi, India
Distribution: Fedora 7
Posts: 1,305

Rep: Reputation: 45
I am with Python.

I know C/C++ but the ease and power of Python are to be tried to be believed.
 
Old 12-19-2003, 07:23 AM   #72
Kumar
Member
 
Registered: Sep 2003
Location: Pune, India
Distribution: Red Hat
Posts: 106

Rep: Reputation: 15
I think BASIC is the best language to begin with. Very easy to start with and understand. Best for someone who doesnot know anything about the programming. I did the same and it helped me a lot.
 
Old 12-19-2003, 07:47 AM   #73
neilcpp
Member
 
Registered: Jul 2003
Location: England
Distribution: Debian Jessie, FreeBSD 10.1 anything *nix to get my fix
Posts: 329

Rep: Reputation: Disabled
You cannot beat C++. It is the best langauge for everything and anything. It is the 'computer programmer's language of choice'. I think that in about two years time, someone will code the entire linux system to C++ from C.
I do like the 'rawness' of C simplicitor but come on folks - times move on. I also liked the Flared trousers & Starsky & Hutch style of the 1970's ... but we have to accept this is now 2003 (soon 2004!!!
I dont intend to upset anyone.. we all have the same interests - but had to air my view, yet again!!
Thanks
 
Old 12-19-2003, 12:55 PM   #74
jhorvath
Member
 
Registered: Sep 2002
Location: OH, USA
Distribution: 2.6.16-1.2096_FC5 #1
Posts: 245

Rep: Reputation: 30
im gonna vouch for the bottom-up strategy used in "Introduction to Computing Systems"

it starts with some basic background knowledge on computers in general, followed by understanding how architectures are built. once you understand how a processor 'processes' information, they start showing you lc2 assembler (lc2 is a system simulator of sorts').. finally they touch on the C language and how various higher level C constructs (pointers, functions, etc..) are implimented. (...also in between they show how binary arithmatic works and how different data types are implimented)

that may seem like the long road..and indeed it is arduous. but greatly helps to understand any future languages you intend to learn and also developing design methods when programming in general.

if you are just interested in programming in some language and have no interest of taking up computer science related studies in the future (say college...), then you have the better of 5 pages to base a decision on. else, the book i mentioned above is pretty good in that it is easy to read and digest the information presented.

hope to help,
--jeremy

Last edited by jhorvath; 12-19-2003 at 12:57 PM.
 
Old 12-19-2003, 01:44 PM   #75
neilcpp
Member
 
Registered: Jul 2003
Location: England
Distribution: Debian Jessie, FreeBSD 10.1 anything *nix to get my fix
Posts: 329

Rep: Reputation: Disabled
Hi Friend... Like I said I did not mean to P anyone off... just was expressing a view (if a bit simple & stupid!!). Im no operating system coder - I guess you are right, but please chill don't blow my head off!!

ps
C++ does the business!!!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
What's a good Programming language to begin with? PLZ HELP! Jonescity Programming 24 07-30-2005 07:43 AM
Where to begin silverjump Programming 3 01-22-2005 12:36 PM
Before i begin flickflum Linux - Newbie 7 10-27-2003 11:01 AM
Before I Begin... (l.winthorst) Linux - Newbie 3 08-06-2003 03:42 PM
where to begin dude Linux - Newbie 4 05-01-2002 03:00 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 06:13 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration