help me out computer friends???

@sidddd (857)
India
December 16, 2006 12:06am CST
well i am interested in computer programming and i don't know from where to start but some say start to learn c programming and some have quite a different opinion.So please say me which program should i begin with??? And please even provide link of learning it for free.
3 people like this
7 responses
@dholey (1383)
• India
16 Dec 06
if you want to leaarn programming , you must begin with c, then shift to c++ and then you can switch to any other language. the basics of programming bigins with c only, c helps a lot , ITS A REAL FACT THAT A PERSON WHO KNOWS C CAN BE SHIFTED TO ANY LANGUAGE THATS WHY THE RECRUITMENT CAMPUS checks the quality of person by checking student's knowledge of c ....
2 people like this
@kingadnan (1538)
• Pakistan
12 Feb 07
yes you are absolutely write i heard same...
• India
16 Dec 06
The first language you should learn is C. If you know C you can understand and study any other language without much effort. Check http://www.cprogramming.com/ to learn about C language. they got a good collection of tutorials.
2 people like this
• India
17 Dec 06
ya you have first learn C language and then only you can proceed further.
1 person likes this
@tsprabhu (705)
• India
16 Dec 06
No doubt, you must start with C programming. This is sure.. But I haven't found any link efficient enough in teaching C. There are few sites which provides a lot of theories on every concept of C language. Further its difficult to learn online.. I learnt it at NIIT. You can approach any such place and take a course, preferably C,C++ on UNIX or LINUX platform to start with programming.. Good Luck!:)
2 people like this
@paki143 (793)
• Pakistan
14 Jan 07
ya first u learn c languages is the major language for programming use book of robet.lfore "intoduction of c progamming" and start to learn it by the way ur first program of c just print out your name in ur screen and program is void main(void) { printf("my name is uzair"); } when u run this program it print on ur screen my name is uzair
@dholey (1383)
• India
14 Jan 07
hi uzair .. check some discussions regarding programming language c in my profile, hope to see your programming skills there also
• India
21 Feb 07
Hi, According to me u should learn C language, because it is the basic building language for each and every other language.Below I am giving a link in which u can find c language and it's application in Operating Systems.I think it is useful for u. www.cs.cf.ac.uk/DaveC/
• India
21 Feb 07
Every C learner starts his/her programs by printing HELLO WORLD.Here I gave that code. int main() { printf("HELLO WORLD"); return 0; } If u r using LINUX u can complie like this. gcc -o hello hello.c (hello.c is the file name) ./hello (for executing) If u r using TURBO C u can do like this. compile - ALT+F9 run - CTRl+F9 Hope this is useful for u.
@kingadnan (1538)
• Pakistan
12 Feb 07
yes i think you should begin programming with C language and try to strong your base, Understand variable, Construction and Loops carefully than you will be able to learn any language but first of all you should strong your base. read wrox book "Beginning Programming" than choose language. thanks