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.
[question posted by sidddd]
responses and comments:
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!:) [tsprabhu]
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 .... [dholey]
yes you are absolutely write i heard same... [kingadnan]
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. [swaroop_sv2003]
ya you have first learn C language and then only you can proceed further. [jain_bangalore]
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 [paki143]
hi uzair .. check some discussions regarding programming language c in my profile, hope to see your programming skills there also [dholey]
yeah ok! if you google you will find many then also! i will tell you something! to get started just have basics knowledge of what the term programming means what type of programming exists! what ways to learn it! which are the easiest and which is toughest and etc then start with C and go up!! [manu_ghimire]
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 [kingadnan]
It is better to learn C in starting. C is a base of all other languages. If you know programing in C you can leran any other language by yourself. "Let us C" is the best book for learning C. and here on mylot some people have verry good knowledge of programing. You take help of those. [istjassi]
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/ [kvpsatyam]
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. [kvpsatyam]
