Tuesday, July 14, 2009

Is it possible to learn C language by self study with specified book and a PC?

pls suggest me a c language book for learning from basics!

Is it possible to learn C language by self study with specified book and a PC?
yes.


refer +2 c books for basics.
Reply:Yes, you need a lot of books as reference, I'm sure you can find 1 in the library before you invest on 1 to keep.


No, you need to try it out so you have to get an Intergrated Development Environment(IDE) and the complier here is free software.


http://www.download.com/Bloodshed-Dev-C-...
Reply:yes and yes





bookpool.com





cheap books for study,





else go to devshed.com for answers.
Reply:C++ for Dummies. No offense intended. You can find it at Amazon.com.
Reply:C by Yashwant Kanetkar. Amazingly easy and lucid.
Reply:If you know the computer basics, you can start immediately.


It is always better to have mentor to phase up your learning.


Start with any good book with fewer pages, it gives you confidence when you finish your first book.
Reply:Yes you can! There are a ton of books and web site tutorials, search Google. And there are free compilers. Linux has a couple of good ones. Novel Linux Desktop ( SUSE )has an awesome IDE environment that you can download for free that will compile/assemble a large number of languages including C and it is GUI based.
Reply:Yes it is possible to learn C... The best book available is


"Programming in C by Dennis Ritchie". There is also a book by Lafore but i am not sure abt the Title


I want a program in c language that execute ADI method for 2 dimensional parabolic pde?

i need a written program in c language to execute ADI method fo a 2 dimensional parabolic pde.

I want a program in c language that execute ADI method for 2 dimensional parabolic pde?
You may have to write it yourself. Have you looked at MatLab or any of those?








Doug


Sunday, July 12, 2009

I always heard about C++ , VIsual Basic and other C language. Can someone explain about Q basic?

is it q basic some kind like C++ language? How to use and is there any special system or download or etc.

I always heard about C++ , VIsual Basic and other C language. Can someone explain about Q basic?
Here's link regarding QBASIC. You can download it from the link below.





Here is a link for download of Visual Basic for DOS - it's free!
Reply:QBASIC is old
Reply:QBasic was a programming environment shipped with MS-DOS.


and a lot of good features, but its main problem was that you couldn't make executable programs with it, you had to enter the QBasic environment in order to run it. And as it was an MS-DOS program you could make only DOS programs and couldn't take advantage of the Windows libraries.





QBasic version 4.5 also made exe files.


Visual Basic based its syntax on QBasic.
Reply:QBASIC stands for quick Basic, we can say it is a version of very old BASIC language. the other version is GW BASIC, but today it is of no use, it was used earlier to teach programming to the beginners.
Reply:QBasic, the name derived from QuickBasic. The expansion of BASIC is Beginner's All-purpose Symbolic Instruction Code.





This is one of the earliest high level programming language using which we can create software programs.





It was originally designed in 1963, by John George Kemeny and Thomas Eugene Kurtz at Dartmouth College.





I don't know what you are trying to achieve using a language that had been frequently in PC DOS era.





C++ is a powerful language based on C programming language that supports structured programming as well as object-oriented programming.


Sieve of Erathosthenes Algorithm in C++ Language (Finding all prime numbers)?

I need Eratosthenes Algorithm in C++ language (to find out prime numbers). I can write it in a few other ways, but I need to do it using a a vector container for the integers, and an array of bool initially set to true to keep track of the crossed off numbers. also by Changing the entry to false for integers that are crossed off the list.


I will appreciate any help. Partial code, if not all. Thank you very much.

Sieve of Erathosthenes Algorithm in C++ Language (Finding all prime numbers)?
I ran this a long time ago:





http://gd.tuwien.ac.at/perf/benchmark/ab...

pokemon cards

How to create sudoku in "C" Language ?

Hi all


i want to know how do i build a program in "C" language that solve sudoku





thanks all

How to create sudoku in "C" Language ?
Yep, lots already out there.





You can go here:


http://www.osix.net/modules/article/?id=...





or here:


http://www.techfinesse.com/game/sudoku_s...





or just do a google search for: solve sudoku c





You will have lots to read and explore. Bon Voyage!


How to create sudoku in "C" Language ?

Hi all


i want to know how do i build a program in "C" language that solve sudoku





thanks all

How to create sudoku in "C" Language ?
Well what do you already have? I can think of a few ways. Tell me what you started with and I'll be glad to help!


What is Extended Variables in C language?

it is related to C language. its a technical question.

What is Extended Variables in C language?
Do you mean "external" variables.





If you do, these are variables that are declared in one file, say foo.c, but referenced in another file, say bar.c.





In this case, the compiler has to be told when compiling bar.c what is the type of the variable. To accomplish this, you use an "extern" command that will specify the type of the variable, but not allocate space for it.
Reply:Are you sure you mean "extended variables"? Extended variables usually refers to variables with additional bits, but they are not C-specific, and I haven't heard them used specifically with C in the past.