<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7790118133350193598</id><updated>2011-08-01T15:13:57.278-07:00</updated><title type='text'>c++ language</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default?start-index=101&amp;max-results=100'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>153</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1531440261665307463</id><published>2009-07-14T23:22:00.001-07:00</published><updated>2009-07-14T23:22:26.784-07:00</updated><title type='text'>How Do I Learn The C Language?</title><content type='html'>I want to learn how to learn the C language, and how to begin programming, i would like to here about any free online tutorials or any books that are available.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How Do I Learn The C Language?&lt;br&gt;http://www.programmingtutorials.com/cplu...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.programmingtutorials.com/c.as...&lt;br&gt;Reply:take an online course;)&lt;br&gt;Reply:dont waste your time on e-book .. just purchase C in 21 days .. and it will be the 21 dayz game .. rest is up to you&lt;br&gt;Reply:Buy the C programming book of McGraw-Hill publication,its gr8 dude u can be a master in C&lt;br&gt;Reply:Reading alot, or watching stuff on it.  Then, from there after learning the syntax list, it's easy.  Just apply what you know.&lt;br&gt;Reply:as one of our frenz said if ur entirely new to programming try go and books like&lt;br&gt;&lt;br /&gt;&lt;br /&gt;let us c by yashwant kanetkar --- a gr8 book&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1531440261665307463?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1531440261665307463/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-do-i-learn-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1531440261665307463'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1531440261665307463'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-do-i-learn-c-language.html' title='How Do I Learn The C Language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6041212951109469976</id><published>2009-07-14T23:22:00.000-07:00</published><updated>2009-07-14T23:22:10.937-07:00</updated><title type='text'>What is the necessity of pointers in C language explicitly or implicitly?</title><content type='html'>interview question asked in infosys and can't we have C language without the pointers??&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is the necessity of pointers in C language explicitly or implicitly?&lt;br&gt;Pointers are needed for:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Reference parameters in functions (call by reference)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For functions with variable arguments (like printf)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Dynamic data structures (like trees, lists and dynamically allocated arrays)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;As function pointers (callbacks) used mainly in libraries for code reuse (see qsort function)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For system programing (low level I/O).&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Without pointers C would be something like the primitive basics used in home computers.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;There are alternatives to pointers called references, but those are only used in modern langauges like C# or Java.&lt;br&gt;Reply:Possibility of both are exist because you can create reference of pointer as void (pointer i.e., void *) then explicitly give the address of any type... &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;in contrast of implicitly you can create any type data pointer and which will hold the address of related type...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;so it depends on your need. I hope it will help full for you.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if any question in more precise way..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;bye&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2plum.blogspot.com/&gt;plum&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6041212951109469976?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6041212951109469976/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-necessity-of-pointers-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6041212951109469976'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6041212951109469976'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-necessity-of-pointers-in-c.html' title='What is the necessity of pointers in C language explicitly or implicitly?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7217217610575743082</id><published>2009-07-14T23:21:00.003-07:00</published><updated>2009-07-14T23:21:57.587-07:00</updated><title type='text'>How can i hang a system with c language?</title><content type='html'>how can i hang a system with c language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can i hang a system with c language?&lt;br&gt;Why?  Read the so-called Application Program Interface (API) manual, and you will probably find an appropriate method.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck and Happy Computing!&lt;br&gt;Reply:you can't - unless the system allows you to do it, or is buggy.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Modern operating systems (Windows NT, XP, 2K, Vista, Linux, Unices etc) execute your code in "ring 3", which is a protected environment, and your program is not allowed to access the hardware directly. Ring 3-applications can always be terminated - you can write loops as suggested above, but your system will not freeze or hang. It might become a bit slow, though.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;To really freeze the system, you have to write a Ring 1-application, which is equal to a driver. A driver can easily freeze the system or create a bluescreen. A normal application can not.&lt;br&gt;Reply:The basic step involved to hang an system is to attack the system resources ex. cpu, memory. Or attack any of the core running services. Also, depends upon what kind of privilege you have on the system.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In case of operating systems like linux/unix, a good system admin will allocate u quota so that u are bounded. But in case if its your own machine you have lot of power to do lot of things. You can even write a messy kernel module but beware before jumping.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// this snippet would make the system run out of resources by &lt;br&gt;&lt;br /&gt;&lt;br /&gt;// creating child's &lt;br&gt;&lt;br /&gt;&lt;br /&gt;while (1) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   fork();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;Reply:Very easily, just write poor code, but if you are aiming this for someone else's machine, you make yourself liable for the cost of any data loss caused by the lock up.&lt;br&gt;Reply:Execute at your own risk,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;unsigned int i;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;for (i = 1; i %26gt; 0; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  { loop code }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7217217610575743082?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7217217610575743082/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-hang-system-with-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7217217610575743082'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7217217610575743082'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-hang-system-with-c-language.html' title='How can i hang a system with c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7961116093129407448</id><published>2009-07-14T23:21:00.002-07:00</published><updated>2009-07-14T23:21:39.248-07:00</updated><title type='text'>What is the code for the program C Language?</title><content type='html'>I've been looking for a code for the program to run, the program is called C Language, and it is our project to discover its code,&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is the code for the program C Language?&lt;br&gt;It's in this book:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://cm.bell-labs.com/cm/cs/cbook/&lt;br&gt;Reply:C as a programming language has been around for quite some time.  The lastest version of this language is called "C++".  It is a professional grade/business grade development language.  Many many business software programs are/were written in this language.  You can find tons of reference material on this programming language at Borders or Barns %26amp; Noble, and also your local public library.&lt;br&gt;Reply:There are plenty of online courses, indeed, a quick online search finds reasonable courses in C programming.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;These courses contain examples, so try them out!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7961116093129407448?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7961116093129407448/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-code-for-program-c-language_5364.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7961116093129407448'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7961116093129407448'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-code-for-program-c-language_5364.html' title='What is the code for the program C Language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-686563469483603310</id><published>2009-07-14T23:21:00.001-07:00</published><updated>2009-07-14T23:21:22.351-07:00</updated><title type='text'>What is the right book to study c language?</title><content type='html'>books from india to learn c language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is the right book to study c language?&lt;br&gt;let us c----by yashwant kanetkar&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-686563469483603310?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/686563469483603310/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-right-book-to-study-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/686563469483603310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/686563469483603310'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-right-book-to-study-c-language.html' title='What is the right book to study c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2899694620049021145</id><published>2009-07-14T23:21:00.000-07:00</published><updated>2009-07-14T23:21:06.585-07:00</updated><title type='text'>What is the code for the program C Language?</title><content type='html'>I've been looking for a code for the program to run, the program is called C Language, and it is our project to discover its code,&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is the code for the program C Language?&lt;br&gt;Well you should be asking how to create the C language? If you have worked in the C language, it is not just the IDE you see. There are libraries and other files you have to take care of - most importantly the compiler.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;As you know the compiler should be able to do two things. First, verify the code and syntax. This includes checking if all variables have been declared and stuff, and finally give out proper error messages. Secondly, it should convert all the source code to assembly language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The IDE is just one part. It somehow combines all these operations into one task. You can design your own IDE; make it the way you want, but it requires knowledge about how to communicate with the components and capture their outputs, and finally present them?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I've told you everything except designing the compiler. If you want to design the compiler you should know the assembly language. The exact info that goes into building the compiler is a mystery to me though. I am not a computer engineer myself, but nevertheless computers interest me. What I would suggest is try out the wikipedia link related to the C language; and then post questions in forums and try to obtain the expected services required by a compiler. This should give you some idea. But I don't know where to start you off on that one.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Once you find the requirements designing the compiler won't be a problem for you. But I must warn you about licences. In spite of C being an old language, I don't know if anyone tried coming out with their own versions. I mean to say is I don't know if anyone tried to design the exact same thing. It could violate some licences. So be careful.&lt;br&gt;Reply:The C Language is a programming language that uses a compiler to convert the source into an object file that can be linked into an executable. It not a program in itself.... there are however compiler programs that implement this programming language, such as Microsoft Visual C++, Borland C++, and Digital Mars C++ (C++ being the main descendant of the C language and contains object oriented programming language extensions).&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thus your question makes little sense unless you trying to develop your own compiler. Another aspect of a C/C++ implementation is the libraries it uses, this is where the code used to build applications are stored. The C/C++ compiler creates a object file that links and connects data structures to code contained in the libraries. The final linking process (in simple terms but is really more complicated) combines the object code and routines in the libraries into a application that is to run on a particular computing platform.&lt;br&gt;Reply:C is a complete programming language sequel of B and BCPL language (probably) .&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It is written in assembly for more information catch the developer of the language&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Dennis M. Ritchie.. find it on search engine..&lt;br&gt;Reply:C Language is not a program.  It is a programming language, which you can use to write programs.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2parts-of-a-flower.blogspot.com/&gt;parts of a flower&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2899694620049021145?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2899694620049021145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-code-for-program-c-language_14.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2899694620049021145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2899694620049021145'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-code-for-program-c-language_14.html' title='What is the code for the program C Language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2400840339180907336</id><published>2009-07-14T23:20:00.003-07:00</published><updated>2009-07-14T23:20:51.358-07:00</updated><title type='text'>Can you tell me a good IDE for programming in the C language?</title><content type='html'>I need to program in the C language, NOT C++. It's for something like putting code in some chips... something for putting C code in some hardware, this is why I need it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Now I'm at the beginning, so don't know much... the programmer I talked to, said they need a program... and first I need to write some code in C...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;What IDE to use, since the last one I used was Borland C 3.1...? I want to use one for Windows.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Also, tell me where to download it from?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can you tell me a good IDE for programming in the C language?&lt;br&gt;The only one I've used is the Pelles C IDE; it's free to download and decent to work with; probably some of the paid ones offer more support, but this will get it done...&lt;br&gt;Reply:Microsoft makes the Visual Studio 2005 Express version available as a free download.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2400840339180907336?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2400840339180907336/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-you-tell-me-good-ide-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2400840339180907336'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2400840339180907336'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-you-tell-me-good-ide-for.html' title='Can you tell me a good IDE for programming in the C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6435816497669035032</id><published>2009-07-14T23:20:00.002-07:00</published><updated>2009-07-14T23:20:34.602-07:00</updated><title type='text'>Is there any software that can convert matlab program to c or c++ language??</title><content type='html'>is there any program that can be used to convert the matlab codes into c language or c++ language. pls tell the name and if possible let me know the link of websites where from i can download the same for free.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i will be highly thankful.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is there any software that can convert matlab program to c or c++ language??&lt;br&gt;Matlab has a companion named Simulink which can produce C-code.  Maybe this will help?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.mathworks.com/products/simuli...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Cheers&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6435816497669035032?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6435816497669035032/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-there-any-software-that-can-convert.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6435816497669035032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6435816497669035032'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-there-any-software-that-can-convert.html' title='Is there any software that can convert matlab program to c or c++ language??'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8651182848282299471</id><published>2009-07-14T23:20:00.001-07:00</published><updated>2009-07-14T23:20:18.519-07:00</updated><title type='text'>How to make tic tac toe using c language program?</title><content type='html'>how to make a tic tac toe using the c language program using two dimensional array?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to make tic tac toe using c language program?&lt;br&gt;#include %26lt;iostream.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdlib.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void drawBoard(int board[][3]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int getScore(int board[][3], int*, int*);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int gameover(int board[][3], int);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(int argc, char *argv[])&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  enum player { computer = 3, human = 2, tie = 1 };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int board[3][3] = { {0,0,0},{0,0,0},{0,0,0} };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int game = 0, turn = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while (1)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int choice, row, column, howMany, newScore;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int biggestScore[9][3];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for(int i = 0; i %26lt; 9; i++) // Set biggestScore[9][3] to all zeros.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      for (int j = 0; j %26lt; 3; j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt; biggestScore[i][j] = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if(turn == 9) // No more sqares left&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      if(gameover(board, tie)) break;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      else { game++; turn = 0; continue; }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    else if((game + turn) % 2 == 0) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    drawBoard(board);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    cout %26lt;%26lt; "Select a square (1-9): ";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    cin %26gt;%26gt; choice;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if(choice %26gt;= 1 %26amp;%26amp; choice %26lt;= 9)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      {&lt;br&gt;&lt;br /&gt;&lt;br /&gt; // Change user input to row/column for use in 2D board array.&lt;br&gt;&lt;br /&gt;&lt;br /&gt; row = (int) (choice - 1) / 3;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; column = (choice - 1) % 3;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; // Check user's input &lt;br&gt;&lt;br /&gt;&lt;br /&gt; if(board[row][column]) { cout %26lt;%26lt; "Space taken, select again.\n"; continue; }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        else { board[row][column] = human; turn++; }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; if(getScore(board, %26amp;row, %26amp;column) %26gt; 50)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   if(gameover(board, human)) break; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;          else { game++; turn = 0; continue; }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    else &lt;br&gt;&lt;br /&gt;&lt;br /&gt;      {&lt;br&gt;&lt;br /&gt;&lt;br /&gt; for(int x = 0; x %26lt; 3; x++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     for(int y = 0; y %26lt; 3; y++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     if(!board[x][y]) // Square is empty&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;         newScore = getScore(board, %26amp;x, %26amp;y);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if(newScore %26gt; biggestScore[0][0])&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    howMany = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if(newScore %26gt;= biggestScore[0][0])&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      biggestScore[howMany][0] = newScore;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      biggestScore[howMany][1] = x;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      biggestScore[howMany++][2] = y;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       }&lt;br&gt;&lt;br /&gt;&lt;br /&gt; int random = rand() % howMany;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; row = biggestScore[random][1];&lt;br&gt;&lt;br /&gt;&lt;br /&gt; column = biggestScore[random][2];&lt;br&gt;&lt;br /&gt;&lt;br /&gt; if(biggestScore[0][0] %26gt; 50)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     board[row][column] = computer;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     if(gameover(board, computer)) break; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;            else { game++; turn = 0; continue; }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   }&lt;br&gt;&lt;br /&gt;&lt;br /&gt; else&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   board[row][column] = computer;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   turn++;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      } // End of if(choice %26gt; 0 ...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    } // End of while(!quit) { ...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  } // End of main() { ...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void drawBoard(int board[][3])&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    char piece;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // Add a 'system("clear")' or 'system("cls")' if you want a clean screen&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // I left this out becuase of portability between windows/unix.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // You may also create a simple for() loop that prints newlines for the same effect. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (int i = 2; i %26gt; -1; i--)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      {                           &lt;br&gt;&lt;br /&gt;&lt;br /&gt;        for (int j = 0; j %26lt; 3; j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;            if(!board[i][j]) piece = (char) (i * 3 + j) + 49;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     else if(board[i][j] == 2) piece = 'X';&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     else piece = 'O';&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     cout %26lt;%26lt; "| " %26lt;%26lt; piece %26lt;%26lt; " ";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   }&lt;br&gt;&lt;br /&gt;&lt;br /&gt; cout %26lt;%26lt; "|\n";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  } // End of drawBoard() ...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int getScore(int board[][3],int *x,int *y)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int score;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // The scores that a square will be given if the proper conditions are met:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // Modify these to see the results but remember that a score of over 50&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // assumes a win; so be careful, or change that number in above code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // Also remember that when the computer is getting these scores, it is&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // assuming that it has not placed the piece yet on that square.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int scores[9] = {/*No Pieces on line*/           0,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*Undefined*/                   0,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*One human piece*/             4,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*One computer piece*/          3,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*Two human pices*/             8,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*One of each*/                 2,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*Two computer OR three human*/ 50,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*Two human and one computer */ 1, &lt;br&gt;&lt;br /&gt;&lt;br /&gt;                     /*Two computer and one human */ 1 };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // Get horizontal score: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;      score = scores[(board[*x][0] + board[*x][1] + board[*x][2])];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // Get vertical score:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      score += scores[(board[0][*y] + board[1][*y] + board[2][*y])];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    // Get diagonal score (if possible)    &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if(*x == *y) // Check for '/' diagonal&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      score += scores[(board[0][0] + board[1][1] + board[2][2])];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if(*x + *y == 2) // Check for '\' diagonal&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      score += scores[(board[2][0] + board[1][1] + board[0][2])];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    return score;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  } // End of getScore() ...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int gameover(int board[][3], int player)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  char again;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  char name[3][9] = { "Computer", "Nobody", "You" };&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  drawBoard(board);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  cout %26lt;%26lt; name[player % 3] %26lt;%26lt; " Won\nPlay again? (Y/N) ";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  cin %26gt;%26gt; again;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if(again == 'Y' || again == 'y')&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      //Reset board&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      for (int i = 0; i %26lt; 3; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt; for (int j = 0; j %26lt; 3; j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   board[i][j] = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  else &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    return 1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8651182848282299471?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8651182848282299471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-make-tic-tac-toe-using-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8651182848282299471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8651182848282299471'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-make-tic-tac-toe-using-c.html' title='How to make tic tac toe using c language program?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-5902430789129680271</id><published>2009-07-14T23:20:00.000-07:00</published><updated>2009-07-14T23:20:05.592-07:00</updated><title type='text'>How can i include graphic program in c language? ex- i've to draw a circle(10,20,30) runtime err occur?</title><content type='html'>c language-----&lt;br&gt;&lt;br /&gt;&lt;br /&gt;graphics-----&lt;br&gt;&lt;br /&gt;&lt;br /&gt;runtime error-----&lt;br&gt;&lt;br /&gt;&lt;br /&gt;draw a circle----&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can i include graphic program in c language? ex- i've to draw a circle(10,20,30) runtime err occur?&lt;br&gt;there must be some error with the initgraph function.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;conio.h%26gt; // for getch();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;graphics.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      int gdrive,gm=DETECT;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      initgraph(%26amp;gdrive,gm,""); /*let the system automatically detect the path to .bgi files*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      circle(50,50,30);/*in your example radius 30 with x,y as 10,20 will cause the circle to be a little away from the screen. */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      getch();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      closegraph();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;hope the above code will work if not contact me  m_gopi_m@yahoo.co.in&lt;br&gt;Reply:I'll give $1000 to anyone who can possibly answer this question in a useful way given the way it was stated by the asker.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2mothers-day-flowers.blogspot.com/&gt;mothers day flowers&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-5902430789129680271?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/5902430789129680271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-include-graphic-program-in-c_14.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5902430789129680271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5902430789129680271'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-include-graphic-program-in-c_14.html' title='How can i include graphic program in c language? ex- i&apos;ve to draw a circle(10,20,30) runtime err occur?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7556125396911373892</id><published>2009-07-14T23:19:00.002-07:00</published><updated>2009-07-14T23:19:46.205-07:00</updated><title type='text'>How addition 2 binary number in the C++ language?</title><content type='html'>How addition 2 binary number in the C++ language?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How addition 2 binary number in the C++ language?&lt;br&gt;Hmmm... what datatype are they?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Do you mean you want to show an int as a binary number and then the addition of another number, also displayed in binary form and the answer in binary form?  If so, the addition is still handled as ints.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7556125396911373892?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7556125396911373892/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-addition-2-binary-number-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7556125396911373892'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7556125396911373892'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-addition-2-binary-number-in-c.html' title='How addition 2 binary number in the C++ language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-87126608607680699</id><published>2009-07-14T23:19:00.001-07:00</published><updated>2009-07-14T23:19:30.133-07:00</updated><title type='text'>How would i make this script in C++ language? Really easy to do, im just stupid?</title><content type='html'>I want to make a program that when intalled says "onshut down - message pop up "Goodbye". or something in the c language, how would i do this?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Also if an image could pop up instead that would be good if poss.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How would i make this script in C++ language? Really easy to do, im just stupid?&lt;br&gt;i hope you do a good job. If u need any tips you should go on &lt;br&gt;&lt;br /&gt;&lt;br /&gt;google.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;answers.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;or ask.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;maybe you have a pup up blocker you should talk to your computer makers&lt;br&gt;Reply:You'll have better success with this question in the Programming section, not Environment.  Good luck.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-87126608607680699?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/87126608607680699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-would-i-make-this-script-in-c_14.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/87126608607680699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/87126608607680699'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-would-i-make-this-script-in-c_14.html' title='How would i make this script in C++ language? Really easy to do, im just stupid?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-9115735498116922548</id><published>2009-07-14T23:19:00.000-07:00</published><updated>2009-07-14T23:19:14.085-07:00</updated><title type='text'>How can i include graphic program in c language? ex- i've to draw a circle(10,20,30) runtime err occur?</title><content type='html'>c language-----&lt;br&gt;&lt;br /&gt;&lt;br /&gt;graphics-----&lt;br&gt;&lt;br /&gt;&lt;br /&gt;runtime error-----&lt;br&gt;&lt;br /&gt;&lt;br /&gt;draw a circle----&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can i include graphic program in c language? ex- i've to draw a circle(10,20,30) runtime err occur?&lt;br&gt;there must be some error with the initgraph function.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;conio.h%26gt; // for getch();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;graphics.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int gdrive,gm=DETECT;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;initgraph(%26amp;gdrive,gm,""); /*let the system automatically detect the path to .bgi files*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;circle(50,50,30);/*in your example radius 30 with x,y as 10,20 will cause the circle to be a little away from the screen. */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;getch();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;closegraph();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;hope the above code will work if not contact me m_gopi_m@yahoo.co.in&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-9115735498116922548?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/9115735498116922548/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-include-graphic-program-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9115735498116922548'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9115735498116922548'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-include-graphic-program-in-c.html' title='How can i include graphic program in c language? ex- i&apos;ve to draw a circle(10,20,30) runtime err occur?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6847026861722501169</id><published>2009-07-14T23:18:00.003-07:00</published><updated>2009-07-14T23:18:58.400-07:00</updated><title type='text'>Suggest me quick and easy learning of C language website?</title><content type='html'>i would like to learn C programming language through websites.  Also suggest me for best web site for web designing.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Suggest me quick and easy learning of C language website?&lt;br&gt;venkateswar p there is no easy way to learn it my friend. What you could do is learn slowly and by making mistake you will learn properly. There is no easy answer to this venkateswar but for you here is link and see if it helps you&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.google.co.uk/search?hl=en%26amp;q=l...&lt;br&gt;Reply:learn it from the net. use google to find the sites. and be sure to keep practising.&lt;br&gt;Reply:http://cplus.about.com/od/beginnerctutor...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4song-downloads.blogspot.com/&gt;song downloads&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6847026861722501169?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6847026861722501169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/suggest-me-quick-and-easy-learning-of-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6847026861722501169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6847026861722501169'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/suggest-me-quick-and-easy-learning-of-c.html' title='Suggest me quick and easy learning of C language website?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7682900001042179533</id><published>2009-07-14T23:18:00.002-07:00</published><updated>2009-07-14T23:18:42.511-07:00</updated><title type='text'>I want to write a program in C language?</title><content type='html'>I want to write a program in C language (in graphics mode). As an output that gives a rectangular box %26amp; this box must be containing two fields ‘Name:’ %26amp; ‘ID:’ so its enable me to give my name %26amp; id on this field. I know that after running program cursor is blink top of the windows but I want to blink it inside the rectangular box. So please help me to write this code.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I want to write a program in C language?&lt;br&gt;Does "in graphics mode" mean using the windows gui or in a console app using graphic characters?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I assume you mean a console app because the gui would automatically give you this stuff.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You need to write it using a cursor control library or perhaps if it's simple enough, just know the ascii terminal control codes.  Search the web for ASCII/VT100 cursor control commands (I've listed a couple of them) and then write your output using those escape sequences.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For example, you output routines would do the following:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;1) Clear the display&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2) Write a line at position x,y&lt;br&gt;&lt;br /&gt;&lt;br /&gt;3) write characters down the sides of the box&lt;br&gt;&lt;br /&gt;&lt;br /&gt;4) write the bottom line&lt;br&gt;&lt;br /&gt;&lt;br /&gt;5) write the prompts at specific positions&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Then your input routine would&lt;br&gt;&lt;br /&gt;&lt;br /&gt;1) place the cursor at the beginning of the name entry and accept x characters&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2) Validate data and display message a x,y if needed&lt;br&gt;&lt;br /&gt;&lt;br /&gt;3) Place the cursor at beginning of ID entry&lt;br&gt;&lt;br /&gt;&lt;br /&gt;4) validate and write message as needed.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I've done something similar, although not in C, but the concept is the same.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7682900001042179533?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7682900001042179533/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-want-to-write-program-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7682900001042179533'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7682900001042179533'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-want-to-write-program-in-c-language.html' title='I want to write a program in C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2833546319899717303</id><published>2009-07-14T23:18:00.001-07:00</published><updated>2009-07-14T23:18:27.372-07:00</updated><title type='text'>Does anyone have a source code in c language for the game mastermind???</title><content type='html'>c language pls... i need it badly...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Does anyone have a source code in c language for the game mastermind???&lt;br&gt;Check out http://www.pscode.com for great sample codes.&lt;br&gt;Reply:Nobody "needs" source code. You need food, warmth and shelter. You only "want" source code for a game - there's a huge difference.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2833546319899717303?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2833546319899717303/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/does-anyone-have-source-code-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2833546319899717303'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2833546319899717303'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/does-anyone-have-source-code-in-c.html' title='Does anyone have a source code in c language for the game mastermind???'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8284229715703626744</id><published>2009-07-14T23:18:00.000-07:00</published><updated>2009-07-14T23:18:10.297-07:00</updated><title type='text'>How would i make this script in C language? Really easy to do, im just stupid?</title><content type='html'>I want to make a program that when intalled says "onshut down - message pop up "Goodbye". or something in the c language, how would i do this?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Also if an image could pop up instead that would be good if poss.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How would i make this script in C language? Really easy to do, im just stupid?&lt;br&gt;no point..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if the pc shuts down, u want it to shut down.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;beside u'd probably need to use c++ and the windows api.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8284229715703626744?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8284229715703626744/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-would-i-make-this-script-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8284229715703626744'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8284229715703626744'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-would-i-make-this-script-in-c.html' title='How would i make this script in C language? Really easy to do, im just stupid?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7900749090738565991</id><published>2009-07-14T23:17:00.003-07:00</published><updated>2009-07-14T23:17:54.213-07:00</updated><title type='text'>What is the code for the program C Language?</title><content type='html'>I've been looking for a code for the program to run, the program is called C Language, and it is our project to discover its code,&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is the code for the program C Language?&lt;br&gt;I'm not 100% sure if this is what you're asking for, but search for the GCC compiler.  It's an open source C compiler that runs on a variety of operating systems.&lt;br&gt;Reply:Sounds like DOS to me&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://easter-cards4.blogspot.com/&gt;easter cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7900749090738565991?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7900749090738565991/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-code-for-program-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7900749090738565991'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7900749090738565991'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-code-for-program-c-language.html' title='What is the code for the program C Language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4192085483882141915</id><published>2009-07-14T23:17:00.002-07:00</published><updated>2009-07-14T23:17:38.093-07:00</updated><title type='text'>How to design software for sudoku in C++ language?</title><content type='html'>Want a help to develop a program in C++ language for "sudoku".&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to design software for sudoku in C++ language?&lt;br&gt;Ummm...technically speaking, you aren't supposed to use these boards for recruiting or hiring.  You can find help for freeware project development by joining the community at the URL below.  Paying projects you can likely get help with by checking out "outsourcing +programming" in a search engine, say YAHOO.&lt;br&gt;Reply:Let me send you that program. Send me your e-mail.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4192085483882141915?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4192085483882141915/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-design-software-for-sudoku-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4192085483882141915'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4192085483882141915'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-design-software-for-sudoku-in-c.html' title='How to design software for sudoku in C++ language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-9079804897750469250</id><published>2009-07-14T23:17:00.001-07:00</published><updated>2009-07-14T23:17:22.872-07:00</updated><title type='text'>Anybody have assignment of  scdl of MBAIT( C LANGUAGE)?</title><content type='html'>MBA IN IT FORM SCDL FIRST SEMSTER NEED A ASSIGNMENT OF C LANGUAGE&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Anybody have assignment of  scdl of MBAIT( C LANGUAGE)?&lt;br&gt;*DTEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      PROGRAM DTEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Begin Prologue  DTEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Refer to ODR&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Routines Called  DODRX&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Date Written   861229   (YYMMDD)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Revision Date  920619   (YYMMDD)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Purpose  EXERCISE FEATURES OF ODRPACK95 SOFTWARE&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***End Prologue  DTEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Used modules&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      USE REAL_PRECISION&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Scalars in common&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTEGER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   NTEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Local scalars&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      REAL (KIND=R8)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   TSTFAC&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTEGER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LUNERR,LUNRPT,LUNSUM&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      LOGICAL&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   PASSED&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...External subroutines&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      EXTERNAL&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   DODRX&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Common blocks&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      COMMON /TSTSET/ NTEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Variable declarations (alphabetically)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C   LUNERR:  The logical unit number used for error messages.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C   LUNRPT:  The logical unit number used for computation reports.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C   LUNSUM:  The logical unit number used for a summary report listing&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            only the test comparisons and not the odrpack generated&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            reports.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C   NTEST:   The number of tests to be run.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C   PASSED:  The variable designating whether the results of all of the &lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            tests agree with those from the cray ymp using double &lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            precision (PASSED=TRUE), or whether some of the results&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            disagreed (PASSED=FALSE).&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C   TSTFAC:  The user-supplied factor for scaling the test tolerances &lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            used to check for agreement between computed results and &lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            results obtained using REAL (KIND=R8) version on cray&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            YMP.  Values of TSTFAC greater than one increase the &lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            test tolerances, making the tests easier to pass and &lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            allowing small discrepancies between the computed and &lt;br&gt;&lt;br /&gt;&lt;br /&gt;C            expected results to be automatically discounted.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***First executable statement  TEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C  Set up necessary files&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C  NOTE:  ODRPACK95 generates computation and error reports on&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C         logical unit 6 by default;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C         logical unit 'LUNSUM' used to summarize results of comparisons&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C         from exercise routine DODRX.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      LUNRPT = 18&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      LUNERR = 18&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      LUNSUM = 19&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      OPEN(UNIT=LUNRPT,FILE='REPORT')&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      OPEN(UNIT=LUNERR,FILE='REPORT')&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      OPEN(UNIT=LUNSUM,FILE='SUMMARY')&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C  Exercise REAL (KIND=R8) version of ODRPACK95&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C  (test reports generated on file 'RESULTS' and&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C   summarized in file 'SUMMARY')&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      NTEST = 23&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      TSTFAC = 1.0E0_R8&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      CALL DODRX(TSTFAC,PASSED,LUNSUM)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      END&lt;br&gt;&lt;br /&gt;&lt;br /&gt;*DODRX&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      SUBROUTINE DODRX&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (TSTFAC,PASSED,LUNSUM)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Begin Prologue  DODRX&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Refer to ODR&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Routines Called  DDOT,DNRM2,ODR,DODRXD,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C                    DODRXF,DODRXW,DWGHT,DZERO&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Date Written   860529   (YYMMDD)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Revision Date  920619   (YYMMDD)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***Purpose  Exercise features of ODRPACK95 software&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C***End Prologue  DODRX&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Used modules&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      USE ODRPACK95&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      USE REAL_PRECISION&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Parameters&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTEGER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LDWD,LDWE,LD2WD,LD2WE,LIWORK,LWORK,MAXN,...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      REAL (KIND=R8)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   BASE&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      PARAMETER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (MAXN=50, MAXM=3, MAXNP=10, MAXNQ=2, NTESTS=23,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LDWE=MAXN, LD2WE=MAXNQ, LDWD=MAXN, LD2WD=MAXM,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LWORK = 18 + 11*MAXNP + MAXNP**2 + MAXM + MAXM**2 + &lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;           4*MAXN*MAXNQ + 6*MAXN*MAXM + 2*MAXN*MAXNQ*MAXNP + &lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;           2*MAXN*MAXNQ*MAXM + MAXNQ**2 +&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;           5*MAXNQ + MAXNQ*(MAXNP+MAXM) + LDWE*LD2WE*MAXNQ,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LIWORK = 20+MAXNP+MAXNQ*(MAXNP+MAXM),&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   BASE = RADIX(1.0E0_R8))&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Scalar arguments&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      REAL (KIND=R8)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   TSTFAC&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTEGER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LUNSUM&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      LOGICAL&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   PASSED&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Scalars in common&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTEGER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   NTEST,SETNO&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Local scalars&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTEGER   &lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   I,INFO,IPRINT,ITEST,JOB,L,LDIFX,LDSCLD,L...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LDX,LDY,LD2WD1,LD2WE1,LIWMIN,LUN,LUNERR,...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   M,MAXIT,MSG,N,NDIGIT,NP,NQ&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      REAL (KIND=R8)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   BNRM,EPSMAC,EWRT,EWRT2,HUNDRD,ONE,P01,P2...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   TAUFAC,THREE,TSTTOL,TWO,WSS,WSSDEL,WSSEP...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      LOGICAL&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   FAILED,FAILS,ISODR,SHORT&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      CHARACTER TITLE*80&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Arrays in common&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      REAL (KIND=R8)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   LOWER(MAXNP),UPPER(MAXNP)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Local arrays&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      REAL (KIND=R8)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   BETA(MAXNP),DELTA(:,:),DPYMP(2,NTESTS),&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   SCLB(MAXNP),SCLD(MAXN,MAXM),&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   STPB(MAXNP),STPD(MAXN,MAXM),&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   WE(MAXN,MAXNQ,MAXNQ),WD(MAXN,MAXM,MAXM),...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   WRK(MAXN*MAXM+MAXN*MAXNQ),X(MAXN,MAXM),Y...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   TEMPRETL(MAXN,MAXM)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTEGER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   IDPYMP(NTESTS),IFIXB(MAXNP),IFIXX(MAXN,M...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Pointers&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      POINTER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   DELTA,IWORK,WORK&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...External functions&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      REAL (KIND=R8)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   DDOT,DNRM2&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      EXTERNAL&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   DDOT,DNRM2&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...External subroutines&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      EXTERNAL&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   DODRXD,DODRXF,DODRXW,DZERO&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Intrinsic functions&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      INTRINSIC&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   ABS,MOD&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Common blocks&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      COMMON /SETID/SETNO&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      COMMON /TSTSET/ NTEST&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      COMMON /BOUNDS/ LOWER,UPPER&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C...Data statements&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   ZERO,P01,P2,ONE,TWO,THREE,HUNDRD&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /0.0E0_R8,0.01E0_R8,0.2E0_R8,1.0E0_R8,2....&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   100.0E0_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,1),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /2.762733195780256808978449342964E+04_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    7.532639569022918943695104672512E-04_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,2),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /2.762732630143673024399942947263E+04_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    7.538467722687131506874279314940E-04_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,3),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /1.069944100000000027940905194068E+09_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    1.212808593256056359629660672046E-05_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,4),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /1.069944100000000026623461142867E+09_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    5.452084633790606017572015067556E-07_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,5),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /1.426988156377258617521571734503E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    1.084728687127432219753903919409E+00_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,6),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /4.261321829513978871872508874025E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    1.477967210398420733565424329280E-02_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,7),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /4.261272307142888464011486769858E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    1.477966125465374336804138554559E-02_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,8),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /4.371487317909745009110272283622E+01_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    1.144419474408286067112233592550E-03_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,9),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /3.099048849376848610380977303924E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    8.824708863783850023783338218501E-02_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,10),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /9.469917836739932584221023234527E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    4.205389215588104651198536809880E-01_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,11),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /3.950949253027682207109233363651E+01_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    6.651838750834910819636881506915E+01_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,12),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /3.950949253027682207109233363651E+01_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    6.651838750834910819636881506915E+01_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,13),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /1.414213562373095000000000000000E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    5.250825926608277346013642256883E-26_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,14),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /1.414213562373095000000000000000E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    8.159081600696301507018019048968E-26_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,15),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /1.486588477064952451556223422813E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    1.841690442255357083922717720270E+03_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,16),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /2.001224625073357401561224833131E+02_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    0.000000000000000000000000000000E+00_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,17),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /2.000099997500125000000000000000E+02_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    0.000000000000000000000000000000E+00_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,18),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /1.414213562373095000000000000000E+00_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    5.816277809383742531415846947805E-26_R8/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DATA&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   (DPYMP(I,19),I=1,2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;   /2.000624902374255782433465356007E+02_R8...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     %26amp;    4.568236947482152283374593507328E+30_R8/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-9079804897750469250?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/9079804897750469250/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/anybody-have-assignment-of-scdl-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9079804897750469250'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9079804897750469250'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/anybody-have-assignment-of-scdl-of.html' title='Anybody have assignment of  scdl of MBAIT( C LANGUAGE)?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6796355903104027175</id><published>2009-07-14T23:17:00.000-07:00</published><updated>2009-07-14T23:17:06.371-07:00</updated><title type='text'>Can any one help me by provideing  c language study material?</title><content type='html'>can any one help me by provideing  c language study material&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     any web sites ......or any study material .....or any material in mail....just u can send me to my mail id      work1hours@yahoo.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i will be glad if u do this favour&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can any one help me by provideing  c language study material?&lt;br&gt;Your local university library should have lots of this type of material.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Providing doesn't have an e.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6796355903104027175?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6796355903104027175/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-any-one-help-me-by-provideing-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6796355903104027175'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6796355903104027175'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-any-one-help-me-by-provideing-c.html' title='Can any one help me by provideing  c language study material?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-3620643046218872169</id><published>2009-07-14T23:16:00.003-07:00</published><updated>2009-07-14T23:16:51.123-07:00</updated><title type='text'>Can any one give me a link to prepare an encyclopedia in c or c++  programing language?</title><content type='html'>i have to do a project in c and c++ language.i thought of creating a encyclopedia using c and c++ languages only.so can any body provide me with the link or the programe?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can any one give me a link to prepare an encyclopedia in c or c++  programing language?&lt;br&gt;Are you planning to create encyclopedia software from scratch such as Wikipedia?  Tikiwiki is C++ open source software that will do the job for you.&lt;br&gt;Reply:LINKS WILL BE OF NO USE.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;BUY A SERIES OF BOOKS "THE C ODYSSEY"&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2brenda-song.blogspot.com/&gt;brenda song&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-3620643046218872169?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/3620643046218872169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-any-one-give-me-link-to-prepare.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3620643046218872169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3620643046218872169'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-any-one-give-me-link-to-prepare.html' title='Can any one give me a link to prepare an encyclopedia in c or c++  programing language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7897537090055625195</id><published>2009-07-14T23:16:00.002-07:00</published><updated>2009-07-14T23:16:34.791-07:00</updated><title type='text'>How do i save big integer numbers in "C" Language?</title><content type='html'>How do i save big integer numbers in "C" Language?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;hi all,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i want to save student ID "10 Digits each" on vars&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but the problem if i use integer vars , its limited to 32768 and can't hold a number from 10 digits !!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;what can i do ?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;any help would be great.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thanks all at least for trying =)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;all i want to do is to read an id from the user with scanf function and to put it in a var... thats all&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    * 5 hours ago&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    * - 3 days left to answer.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Additional Details&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;5 hours ago&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thanks for the idea,,,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but can you please explain more about the LONG INT ?..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;how exactly to use it,,,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;whats the limits of long int...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and if u can type simple small program to read IDS from users and put them in long integers...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thanks again&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;5 hours ago&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Using a numerical type will make it impossible to effectively hold student IDs that have leading 0s.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Yes thats right,, then how i can read 10 different ids and to sort them from small to big,,, or something like that,,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thats exactly wt makes me crazy&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How do i save big integer numbers in "C" Language?&lt;br&gt;The previous recommendations to use a char array for your IDs, and sort the IDs after you've collected them, are good suggestions. I wrote the code below to illustrate a way to do this, with a few extra features:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;IDs can be entered 1 or more per line, separated by commas, tabs, or spaces.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;IDs shorter than 10 charcters will be padded with leading zeros.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;IDs longer than 10 characters will be truncated.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Entered IDs are inserted into a linked list in alphabetical order.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;A feature you could add: check for duplicate entries, reject them and display an error message.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;string.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdlib.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#define MAX_LINE 80&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#define ID_LEN 10&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#define WS " ,\t"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;struct IdListNode_t {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int len;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  char *id;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  struct IdListNode_t *next;   &lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;typedef enum { false = 0, true } Bool;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;typedef struct IdListNode_t *IdList_t;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;IdList_t newIdList();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void idListInsert(IdList_t, char *);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void printIdList(IdList_t);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void deleteIdList(IdList_t);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(int argc, char *argv[]) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  char line[MAX_LINE],*s;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  char id[ID_LEN];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  IdList_t idList = newIdList();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  Bool done = false;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  printf("\nEnter ids (one or more per line, empty line to quit):\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while (done == false) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    fgets(line,MAX_LINE,stdin); &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    *strchr(line,'\n') = '\0';&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if ((done = (strlen(line) == 0)) == false) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      for (s = strtok(line,WS); s != NULL; s = strtok(NULL,WS)) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        if (strlen(s) %26lt;= ID_LEN) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;          memset(id,'0',ID_LEN);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;          strcpy(id + ID_LEN - strlen(s),s);&lt;br&gt;&lt;br /&gt;&lt;br /&gt; } else {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   strncpy(id,s,ID_LEN);&lt;br&gt;&lt;br /&gt;&lt;br /&gt; }&lt;br&gt;&lt;br /&gt;&lt;br /&gt; idListInsert(idList,id);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  printIdList(idList);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  deleteIdList(idList);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;IdList_t newIdList() {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return calloc(1,sizeof(struct IdListNode_t));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void idListInsert(IdList_t l, char *s) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  struct IdListNode_t *p = l;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  struct IdListNode_t *n = calloc(1,sizeof(struct IdListNode_t));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  n-%26gt;len = strlen(s);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  n-%26gt;id = malloc(n-%26gt;len);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  strcpy(n-%26gt;id,s);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while ((p-%26gt;next != NULL) %26amp;%26amp; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;         (strcmp(n-%26gt;id,p-%26gt;next-%26gt;id) %26gt; 0)) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    p = p-%26gt;next;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  n-%26gt;next = p-%26gt;next;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  p-%26gt;next = n;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void printIdList(IdList_t l) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  struct IdListNode_t *p = l-%26gt;next;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while (p != NULL) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("|%s|\n",p-%26gt;id);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    p = p-%26gt;next;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void deleteIdList(IdList_t l) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  struct IdListNode_t *p = l;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  while (p != NULL) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    struct IdListNode_t *next = p-%26gt;next;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    free(p-%26gt;id);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    free(p);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    p = next;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;Reply:the primitive type 'long' will happily store any 10 digit number, however you will have problems storing ids starting with 0.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;My recommendation is to just use a string (character array)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;rough example:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;char student_id[10];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;scanf("%s", student_id);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Then use any regular sorting algorithm to sort the results.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7897537090055625195?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7897537090055625195/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-do-i-save-big-integer-numbers-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7897537090055625195'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7897537090055625195'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-do-i-save-big-integer-numbers-in-c.html' title='How do i save big integer numbers in &quot;C&quot; Language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8247243638903813825</id><published>2009-07-14T23:16:00.001-07:00</published><updated>2009-07-14T23:16:18.561-07:00</updated><title type='text'>Hi, i m getting "Array Bound Read" in C language for perticular file that is written in C.i m using memcpy().</title><content type='html'>I m getting "Array Bound Read" error while usign memcpy () in C language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;can u plz tell me why this err is coming and How can we solve these kind of errors.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;That err is displaying while i m chcking through Rational Purifier s/w.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;please let me know how we can resolve this err.ASAP&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks and Regards,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Sharique&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Hi, i m getting "Array Bound Read" in C language for perticular file that is written in C.i m using memcpy().&lt;br&gt;It means, you have crossed array boundary and try to read from another memory block.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Validate your memcpy() parameters.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8247243638903813825?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8247243638903813825/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/hi-i-m-getting-array-bound-read-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8247243638903813825'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8247243638903813825'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/hi-i-m-getting-array-bound-read-in-c.html' title='Hi, i m getting &quot;Array Bound Read&quot; in C language for perticular file that is written in C.i m using memcpy().'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2846082943153171365</id><published>2009-07-14T23:16:00.000-07:00</published><updated>2009-07-14T23:16:02.101-07:00</updated><title type='text'>From where i can find and download free c++ language and compiler and related materials?</title><content type='html'>my son is studing in 10th std and wants to learn c++ for that i want the language and i also want to create some programmes on this language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;From where i can find and download free c++ language and compiler and related materials?&lt;br&gt;There is a lot stuff related to C++. It's also becoming outed as an old code. I think you'd have better success trying a used book store. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;The links below may be helpful.&lt;br&gt;Reply:http://www.bloodshed.net/devcpp.html&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;free C++ compiler and stuff&lt;br&gt;Reply:try this it is the express edition of MS C++ (and it's free!!)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2846082943153171365?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2846082943153171365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/from-where-i-can-find-and-download-free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2846082943153171365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2846082943153171365'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/from-where-i-can-find-and-download-free.html' title='From where i can find and download free c++ language and compiler and related materials?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-9095477322587954630</id><published>2009-07-14T22:19:00.003-07:00</published><updated>2009-07-14T22:19:56.246-07:00</updated><title type='text'>Can any one tell where can i get free online classes on  c language?</title><content type='html'>can any one tell where can i get free online classes on  c language  ...or pls tell me some nice web sites which provide total help and material regarding c language....pls i need ur help so much pls &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        c language     learning material ...programs, flow charts , diagrams every thing each and every thing&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if u have it in mail pls u can even forword it to me&lt;br&gt;&lt;br /&gt;&lt;br /&gt; my id is         work1hours@yahoo.com&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Can any one tell where can i get free online classes on  c language?&lt;br&gt;http://www.google.com/search?hl=en%26amp;q=fre...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://bouquet2.blogspot.com/&gt;bouquet&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-9095477322587954630?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/9095477322587954630/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-any-one-tell-where-can-i-get-free.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9095477322587954630'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9095477322587954630'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/can-any-one-tell-where-can-i-get-free.html' title='Can any one tell where can i get free online classes on  c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-5040394469155225673</id><published>2009-07-14T22:19:00.002-07:00</published><updated>2009-07-14T22:19:40.398-07:00</updated><title type='text'>Question about "int main(int argc, char *argv[])" in the C language?</title><content type='html'>I'm trying to help out a friend out understanding the C language for a class.  I personally understand C++, never worked with C.  His problem is that he has to write a program that gets a loop count from the command line, and then writes the process ID for each loop as it runs.  We've made some progress with understanding other parts of how C works, but we aren't getting this argc and argv[] part.  I know what they are, but not how to properly use them.  Here is the code that he was given to start with:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;sys/types.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;unistd.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(int argc, char *argv[]) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      int count;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      if (argc == 2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;            count = atoi(argv[1]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      else&lt;br&gt;&lt;br /&gt;&lt;br /&gt;            count = 10;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;pid_t getpid(void);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;=======================&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Any help is greatly appreciated.  I just need to understand how to use these parameters, then I should be able to use them properly in the code, and help him out...  Thanks...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Question about "int main(int argc, char *argv[])" in the C language?&lt;br&gt;It looks like you are on the right track, and given the other answer you know what the parameters are and how they are used.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Im confused with how you are compiling and running your programme. The one you gave in the question should not put out any information.  As a simple test, change your programme slightly to verify what you are finding on the command line:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;include %26lt;sys/types.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;unistd.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(int argc, char *argv[]) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int count;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int pid;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if (argc == 2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;count = atoi(argv[1]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;else&lt;br&gt;&lt;br /&gt;&lt;br /&gt;count = 10;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;pid = getpid();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf( "count=%d  pid%d\n", count, pid );&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;=============&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Just to make sure you are on the right track with compilation, if your programme is in prog.c try these commands:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;gcc prog.c&lt;br&gt;&lt;br /&gt;&lt;br /&gt;a.out 6&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Im assuming you have gcc, otherwise the command will be cc to compile and link.  By default the output is a file called a.out and that is executable from the command line.   If this worked, then you should see count=6 and pid=xxxxxx on the screen. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hope this gets you a bit further.&lt;br&gt;Reply:When the application starts the command line is parsed and passed to the main function.  The argc is the integer count of the parameters passed and argv is an array of char * that points to the string data containing each of the command line arguments.  When parsed argv[0] equals the name of the application that was executed and argv[1..n] is each of the command line parameters.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-5040394469155225673?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/5040394469155225673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/question-about-int-mainint-argc-char.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5040394469155225673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5040394469155225673'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/question-about-int-mainint-argc-char.html' title='Question about &quot;int main(int argc, char *argv[])&quot; in the C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7636330294337143356</id><published>2009-07-14T22:19:00.001-07:00</published><updated>2009-07-14T22:19:23.981-07:00</updated><title type='text'>Please write this one too in C prgramming language!?</title><content type='html'>using conditional operator,find whether the number is completely divisible by 10!can u tell me whether i can learn C-language online by myself!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Please write this one too in C prgramming language!?&lt;br&gt;again really easy:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int divisibility = (m % 10) == 0) ? 1 : 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;But I think it is better you learn it yourself. Try a book that would be better. Just search C language tutorials.&lt;br&gt;Reply:int main(){&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int n;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;cout%26lt;%26lt;"n= "; cin%26gt;%26gt;n;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if (n%10==0) cout%26lt;%26lt;"n is divisible by 10"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    else cout%26lt;%26lt;"n is not divisible by 10"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Now, for learning C/C++ I recommend you a very good book named "Thinking in C++". It has two volumes and it's already at the 3-rd edition. It's free to download! More info you'll find at this link!&lt;br&gt;Reply:this is professional:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int divisibility = (m % 10) == 0) ? 1 : 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but if you dont know about ? you can use it:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int divisibility;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if((m % 10)==0) divisibility=1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;else divisibility=0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;about learn c i suggest you use forums ;)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7636330294337143356?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7636330294337143356/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/please-write-this-one-too-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7636330294337143356'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7636330294337143356'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/please-write-this-one-too-in-c.html' title='Please write this one too in C prgramming language!?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4899055948013699147</id><published>2009-07-14T22:19:00.000-07:00</published><updated>2009-07-14T22:19:08.313-07:00</updated><title type='text'>I would like learn computer basics along with c and c++  language for free in online or by books.?</title><content type='html'>as i am poor i cant get computer education so i would like to recieve free books of computer of computer basics along with c and c++ language.plz send me datails does any 1 knows about this.kindly waiting for ur response.thnx&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I would like learn computer basics along with c and c++  language for free in online or by books.?&lt;br&gt;If you are going to learn C, you need the C programmers bible.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;K%26amp;R - The C programming Language:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.amazon.com/C-Programming-Lang...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I don't know any programmer worth their salt that does not have this book on their shelf. At the very least, check this out from the library (or have a look-see while you are at Barnes %26amp; Noble).&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;However, if you are insistent on learning from the internet, here is a good link for free programming books:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.freetechbooks.com/&lt;br&gt;Reply:I'm thinking you aren't going to get anything meaningful for free.&lt;br&gt;Reply:http://www.learnthat.com/courses/compute...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.fgcu.edu/support/office2000/w...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.thefreecountry.com/documentat...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The Fgcu is a very good site, many of my friends have used it too, &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Just a piece of advice, NEVER SAY YOU ARE POOR, because you become what you think....THINK RICH and you will be rich...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;you should check out the following site..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;www.secret.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck with everything you...THINK POSITIVE...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4899055948013699147?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4899055948013699147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-would-like-learn-computer-basics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4899055948013699147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4899055948013699147'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-would-like-learn-computer-basics.html' title='I would like learn computer basics along with c and c++  language for free in online or by books.?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8807217447075822654</id><published>2009-07-14T22:18:00.003-07:00</published><updated>2009-07-14T22:18:52.783-07:00</updated><title type='text'>How Can I Download C Language ?</title><content type='html'>i want to Download C Programming Language thru internet on my PC!! anyone can get me some Link to download thru??&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How Can I Download C Language ?&lt;br&gt;Try here:&lt;br&gt;Reply:You could try this site.  It has free compilers including c/c++&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.thefreecountry.com/compilers/...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C Compilers can be found an downloaded for Linux/Windows operating systems.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;(Alternatively, if you are looking for c# or c++, Microsoft Offers Visual Studio Express versions of both of these at the following url:  http://msdn.microsoft.com/vstudio/expres... )&lt;br&gt;Reply:u can purchase the installer from the market or mail me&lt;br&gt;Reply:You do not download the C language. You can write C programs on notepad or wordpad. What you need is a compiler to complete the program once it is written.&lt;br&gt;Reply:You don't download C explicitly.  You need to download a development environment that allows you to write and compile C programs.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if you are good with your own editor and running commands from a DOS or Linux shell, you should download GCC from gnu.org.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://gcc.gnu.org/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if you;re more inclined to have a project space and use a GUI, try out Microsofts Visual C++, which will also compile plain old C.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://msdn.microsoft.com/vstudio/expres...&lt;br&gt;Reply:well, i'm using visual studio.net for c/c++&lt;br&gt;&lt;br /&gt;&lt;br /&gt;visual studio 6.0 also available&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4yu-gi-oh-cards.blogspot.com/&gt;yu gi oh cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8807217447075822654?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8807217447075822654/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-download-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8807217447075822654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8807217447075822654'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-download-c-language.html' title='How Can I Download C Language ?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8617611743975400295</id><published>2009-07-14T22:18:00.002-07:00</published><updated>2009-07-14T22:18:36.288-07:00</updated><title type='text'>ACM Contest Program Solutions (C Language)?</title><content type='html'>Can anyone tell me a good website/forum/blog which has solutions for ACM programming contest problems using C programming Language??&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;ACM Contest Program Solutions (C Language)?&lt;br&gt;Check out Steven Halim's site:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;www.comp.nus.edu.sg/~stevenha/programm...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8617611743975400295?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8617611743975400295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/acm-contest-program-solutions-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8617611743975400295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8617611743975400295'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/acm-contest-program-solutions-c.html' title='ACM Contest Program Solutions (C Language)?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-486189565281070488</id><published>2009-07-14T22:18:00.001-07:00</published><updated>2009-07-14T22:18:21.550-07:00</updated><title type='text'>I need a compiler for the C language!?</title><content type='html'>Is there any compilers out there for the C programming language for windows vista? Any help will be appreciated!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I need a compiler for the C language!?&lt;br&gt;Google is God.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Scroll down to "Free compilers"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.cpax.org.uk/prg/portable/c/re...&lt;br&gt;Reply:Microsoft has a free version of visual C++ for download, or you could use gcc.&lt;br&gt;Reply:If you run a search one of the first links you will find is:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.thefreecountry.com/compilers/...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You don't need to go any further.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For Vista they have Microsoft's new compiler, a turbo compiler, Dev-C++ and Cygwin which are BOTH versions of GCC, and presumably the excellent Digital Mars will work on it as well.  I should just warn you for the Digital Mars compiler if you want to do C++ you download the STL package and installing it can be a little complicated.  Before I jumped from Windows to Linux I was using it, but I created a short .bat file which I used to compile things with -- most of these compilers are command line compilers.&lt;br&gt;Reply:C is a subset of C++.  Just don't use the advanced features and study the differences.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-486189565281070488?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/486189565281070488/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-need-compiler-for-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/486189565281070488'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/486189565281070488'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-need-compiler-for-c-language.html' title='I need a compiler for the C language!?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2018422119761138538</id><published>2009-07-14T22:18:00.000-07:00</published><updated>2009-07-14T22:18:04.264-07:00</updated><title type='text'>How to write this programe in Turbo C language?</title><content type='html'>Plz use Turbo C language instead of C++.And have to use for loops etc in this program.use stdio.h n conio.h only n use &lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf() etc.................&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;........1&lt;br&gt;&lt;br /&gt;&lt;br /&gt;......121&lt;br&gt;&lt;br /&gt;&lt;br /&gt;....12321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;..1234321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;123454321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;..1234321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;....12321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;......121&lt;br&gt;&lt;br /&gt;&lt;br /&gt;........1&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to write this programe in Turbo C language?&lt;br&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int i, w = 5, dx = 1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i = 1; i %26gt;= 1; i += dx)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     int pad;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     if (i == w) dx = -1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     for (pad = w; pad %26gt; i; --pad)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       putchar(' ');&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     for (pad = 1; pad %26lt;= i; ++pad)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       putchar('0' + pad); /* This line prints eg: 1234 */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     for (pad = i - 1; pad %26gt;= 1; --pad)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       putchar('0' + pad); /* This line prints eg: 321 */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     putchar('\n');&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2018422119761138538?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2018422119761138538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-write-this-programe-in-turbo-c_14.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2018422119761138538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2018422119761138538'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-write-this-programe-in-turbo-c_14.html' title='How to write this programe in Turbo C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-3781366706217990254</id><published>2009-07-14T22:17:00.002-07:00</published><updated>2009-07-14T22:17:48.292-07:00</updated><title type='text'>What is meant by preprocessor in "c language"?</title><content type='html'>it is about the "c language".&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is meant by preprocessor in "c language"?&lt;br&gt;It is  a program that preprocess the source code before it is passed to the compiler.There r different kind of preprocessor command or directive like macro expansion, file inclusion,conditional compilation etc...&lt;br&gt;Reply:The preprocessor is one of the four tools that a compiler suite needs to compile your source code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Being executed as first, the preprocessor looks in the source code for C macros and substitutes them against the corresponding code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can recognize those macros by the # in front of the keyword (#include, #pragma, #define, #ifdef, ...)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://thank-you-cards2.blogspot.com/&gt;thank you cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-3781366706217990254?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/3781366706217990254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-meant-by-preprocessor-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3781366706217990254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3781366706217990254'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-meant-by-preprocessor-in-c.html' title='What is meant by preprocessor in &quot;c language&quot;?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-5722822898597460467</id><published>2009-07-14T22:17:00.001-07:00</published><updated>2009-07-14T22:17:32.354-07:00</updated><title type='text'>How to write this programe in Turbo C language?</title><content type='html'>Plz use Turbo C language instead of C++.And have to use for loops etc in this program.use stdio.h n conio.h only n use &lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf() etc.................&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;........1&lt;br&gt;&lt;br /&gt;&lt;br /&gt;......121&lt;br&gt;&lt;br /&gt;&lt;br /&gt;....12321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;..1234321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;123454321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;..1234321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;....12321&lt;br&gt;&lt;br /&gt;&lt;br /&gt;......121&lt;br&gt;&lt;br /&gt;&lt;br /&gt;........1&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to write this programe in Turbo C language?&lt;br&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int i, w = 5, dx = 1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i = 1; i %26gt;= 1; i += dx)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     int pad;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     if (i == w) dx = -1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     for (pad = w; pad %26gt; i; --pad)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       putchar(' ');&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     for (pad = 1; pad %26lt;= i; ++pad)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       putchar('0' + pad); /* This line prints eg: 1234 */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     for (pad = i - 1; pad %26gt;= 1; --pad)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       putchar('0' + pad); /* This line prints eg: 321 */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     putchar('\n');&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-5722822898597460467?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/5722822898597460467/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-write-this-programe-in-turbo-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5722822898597460467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5722822898597460467'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-write-this-programe-in-turbo-c.html' title='How to write this programe in Turbo C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-3841606312491710486</id><published>2009-07-14T22:17:00.000-07:00</published><updated>2009-07-14T22:17:15.953-07:00</updated><title type='text'>Anyone can help me to make a "C language" program?</title><content type='html'>1. To convert hexadecimal to decimal&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    Suppose the input is :"4FDA12"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    And the output should be:"5233170"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    Suppose the input is :"F"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    And the output is:"15" &lt;br&gt;&lt;br /&gt;&lt;br /&gt;2. To convert decimal to hexadecimal&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    Suppuse the input is "5233170"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    And the output is "4FDA12"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    Suppose the input is "15"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    And the output is "F"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Please let me know how it work and how is the algorithm. I try to make it for 3 days but i confuse. I have a problem with how we save tomporaty the number and the counter to count how many digit is the output. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;I still learn C language and i dont understand C++&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Could someone please explain me and help me to build the 2 programs. I need the source code to improve my Algorithm skill.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;:)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks for ur help.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck. Have a nice weekend..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Anyone can help me to make a "C language" program?&lt;br&gt;Just use strtoul to convert from string to integer, and sprintf&lt;br&gt;&lt;br /&gt;&lt;br /&gt;to convert from an interger back to a string.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Example 1: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;val = strtoul(hexstr, NULL, 16);  /* hex string to interger */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Example 2:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;val = strtoul(decstr, NULL, 10);  /* dec string to integer */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Example 3:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;sprintf(hexstr, "%X", val);           /* integer to hex string */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Example 4:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;sprintf(decstr, "%d", val);           /* integer to dec string */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you're doing this for a class, then the instructor might have told&lt;br&gt;&lt;br /&gt;&lt;br /&gt;you that you are not allowed to use functions like strtoul and sprintf to do the conversion. In that case, you can do something like this...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// the dots at the beginning of each line are there because&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// yahoo removes leading spaces&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;unsigned int hexstr2uint(char *hexstr)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .   unsigned int val = 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  int temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .   if (hexstr != NULL)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . .  for( ; *hexstr ; hexstr++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . .  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . . . . temp = hexchr2int( *hexstr );&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . . . . if (temp == -1)  /* stop if we reach an invalid char */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . . . . . . break;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . . . . val *= 16;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . . . . val += (unsigned int) temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . .  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  return val;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You should be able to write the hexchr2int function, and&lt;br&gt;&lt;br /&gt;&lt;br /&gt;the decstr2uint function will be similar to the one I've shown&lt;br&gt;&lt;br /&gt;&lt;br /&gt;above.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;To convert an integer to a string w/o using standard C functions...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;char *uint2hexstr(unsigned int val, char *outbuf)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .   int digits[32],  ndigits = 0,  i = 0 ;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  do&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . .  digits [ ndigits++ ] = val % 16;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . .  val /= 16;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  while(val %26gt; 0);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  for ( i = 0; i %26lt; ndigits ; i++ )    &lt;br&gt;&lt;br /&gt;&lt;br /&gt;. . . .  outbuf [ i ] = int2hexchr(digits [ ndigits - i - 1 ]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  outbuf [ ndigits ] = '\0';  // null terminate&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.    &lt;br&gt;&lt;br /&gt;&lt;br /&gt;. .  return outbuf;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;again, you can write the int2hexchr function, and the&lt;br&gt;&lt;br /&gt;&lt;br /&gt;decimal version will be similar.&lt;br&gt;Reply:Is this your homework? You haven't posted your approach to solve the problem. If you do that I might be able to tell you where you are wrong. Anyway you take see for the algorithm at http://www.permadi.com/tutorial/numDecTo...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Ck&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.gfour.net&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-3841606312491710486?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/3841606312491710486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/anyone-can-help-me-to-make-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3841606312491710486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3841606312491710486'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/anyone-can-help-me-to-make-c-language.html' title='Anyone can help me to make a &quot;C language&quot; program?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6252931027160193341</id><published>2009-07-14T22:16:00.003-07:00</published><updated>2009-07-14T22:16:59.895-07:00</updated><title type='text'>How to restart the system writing program using c/c++ language?</title><content type='html'>i want to know coding part (i mean program) how to restart my computer writing my own program using either c/c++ language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to restart the system writing program using c/c++ language?&lt;br&gt;This trick is done, using the Windows API.  Visit this link for some details:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.codersource.net/mfc_shutdown_...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I hope this helps&lt;br&gt;Reply:no idea   dont get a virus&lt;br&gt;Reply:frankly, I dont know if there is a uniform way of doing this.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but I can suggest a quick and dirty hack to do this&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;use something like&lt;br&gt;&lt;br /&gt;&lt;br /&gt;system("shutdown -r") on windows/linux etc.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;These will invoke the native OS calls to do what you want. Its also really ugly. I am hoping someone else gives you a better way to solve this problem!&lt;br&gt;Reply:Using interrupts.. Refer Interrupt programmng in C - byu yeshwant kanethkar&lt;br&gt;Reply:There are two methods&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;1. Call the "shutdown.exe" (with params "/r" if you are on windows)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2. Send the system the appropriate termination signal&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6252931027160193341?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6252931027160193341/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-restart-system-writing-program.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6252931027160193341'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6252931027160193341'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-restart-system-writing-program.html' title='How to restart the system writing program using c/c++ language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-5829519844683347478</id><published>2009-07-14T22:16:00.002-07:00</published><updated>2009-07-14T22:16:44.499-07:00</updated><title type='text'>How to print the result in c language?</title><content type='html'>My actual question is how to print the result or some other thing using c language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;for example:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("\nName:X\nFrom:XX...........")...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;output will be:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Name:x&lt;br&gt;&lt;br /&gt;&lt;br /&gt;From:XX..........&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This output i should print in a paper.Pls help meeeee............&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to print the result in c language?&lt;br&gt;If you want to print variables and string using printf.. you will need to do:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("\nName:%s\nFrom:%s\n", str1, str2);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Output: (str1 = John, str2 = Yo)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Name: John&lt;br&gt;&lt;br /&gt;&lt;br /&gt;From: Yo&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2potential-breakup-song.blogspot.com/&gt;potential breakup song&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-5829519844683347478?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/5829519844683347478/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-print-result-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5829519844683347478'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5829519844683347478'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-print-result-in-c-language.html' title='How to print the result in c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7229877228990847994</id><published>2009-07-14T22:16:00.001-07:00</published><updated>2009-07-14T22:16:27.952-07:00</updated><title type='text'>What is an identifier in the C language?give brief theme with examples and what is relation with variables?</title><content type='html'>Basics of C LANGUAGE&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is an identifier in the C language?give brief theme with examples and what is relation with variables?&lt;br&gt;An identifier is a human-readable name for a symbol.  Symbol is short for symbolic representation of a memory location and/or its contents.  Since both code and data reside in memory, a symbol can represent either a function or [what's commonly called] a variable.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Some say that, in the purest sense, a function is a variable -- to a degree that's true, but it's not common usage.  Usually when someone says "variable" they're talking about a data declaration... usually but not always.  (Warning: I'm about to crank-up the "confusing stuff knob" to 11.)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It is possible to declare a variable of type pointer to function, as opposed to declaring an actual function, e.g.,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// actual function&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int foo(int bar)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   return bar;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// define type "pointer to function that returns int,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// and accepts one int parameter"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;typedef int (*LPFN_FOO)(int);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// declare a variable of type pointer to function [...], and assign &lt;br&gt;&lt;br /&gt;&lt;br /&gt;// the address of an actual function to it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;LPFN_FOO pFoo = foo;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// pFoo and foo can now be used interchangably&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int a = pFoo(5);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int b = foo(5);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if (a == b)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   printf("it's true!");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The point of all this is that in common usage the terms "variable" and "function" refer to two inherently different concepts/constructs.  But that not withstanding, we see that sometimes the line between them blurs (so badly it almost vanishes) -- which serves to bring home the fact that functions and variables are just symbols, that are referenced in source code by their identifiers.&lt;br&gt;Reply:identifiers are basically a name for either a variable or a function.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;variables are declared like this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int varName;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int is the type of the variable (what kind of data it can hold) and varName is the name of the variable.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The significance is that you use the identifier to represent the variable, so if you wanted to assign the above variable a value you would do it like this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;varName = 10;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;identifiers can all so be the names of functions and are declared like this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int funcName(int varName)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;//code...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;where int is the return type, or what kind of data that function will return when called.  funcName is the identifier by which the function is called, and int varName is a paramater.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;the site in my sources is a great C tutorial.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7229877228990847994?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7229877228990847994/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-identifier-in-c-languagegive.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7229877228990847994'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7229877228990847994'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-identifier-in-c-languagegive.html' title='What is an identifier in the C language?give brief theme with examples and what is relation with variables?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-139598062008066141</id><published>2009-07-14T22:16:00.000-07:00</published><updated>2009-07-14T22:16:12.355-07:00</updated><title type='text'>What can be created after learning c++ language, also how can i create my softwares?</title><content type='html'>HOW CAN I CREATE SOFTWARES?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;WILL I BE ABLE TO CREATE SOFTWARES AFTER LEARNING C++ LANGUAGE?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What can be created after learning c++ language, also how can i create my softwares?&lt;br&gt;just learning the basic C++ language will not give you a handle on creating software apps. usually creating applications requires you to have a good handle on programming language. it will also mostly require that you know some form of database (either SQL, Access and Oracle). You will also most probably be working in a team (very few software apps are made by locking a programmer in a room and letting him/her churn out code).&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-139598062008066141?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/139598062008066141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-can-be-created-after-learning-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/139598062008066141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/139598062008066141'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-can-be-created-after-learning-c.html' title='What can be created after learning c++ language, also how can i create my softwares?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2287764297796305061</id><published>2009-07-14T22:15:00.003-07:00</published><updated>2009-07-14T22:15:56.462-07:00</updated><title type='text'>How to enter a paragraph in C language?</title><content type='html'>code for entering a paragraph in C language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to enter a paragraph in C language?&lt;br&gt;If you are asking about taking an entire paragraph as input text, then you need to use libraries for the same. Depending on which C you are using:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Turbo C: conio.h&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Unix versions: curses.h&lt;br&gt;Reply:I don't know of such thing in C. Perhaps you're thinking of paragraph in terms of HTML coding? In HTML, %26lt;p%26gt; and %26lt;/p%26gt; are used to enclose a paragraph. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In C, you can manipulate and use the newline special character to do so; that is \n  (backslash and the letter n). &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Many newline special characters make up many newlines.&lt;br&gt;Reply:Use \n and \t.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Eg&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("\tHello, there!\nHow you doin?\nSee ya later");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;OUTPUT&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     Hello, there!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;How you doin?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;See ya later&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;\t - TAG SPACE&lt;br&gt;&lt;br /&gt;&lt;br /&gt;\n - NEW LINE&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Senthil&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2287764297796305061?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2287764297796305061/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-enter-paragraph-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2287764297796305061'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2287764297796305061'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-enter-paragraph-in-c-language.html' title='How to enter a paragraph in C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6193964048869390037</id><published>2009-07-14T22:15:00.002-07:00</published><updated>2009-07-14T22:15:40.501-07:00</updated><title type='text'>Example program of magic square in c language?</title><content type='html'>show the whole magic program in c language.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Example program of magic square in c language?&lt;br&gt;Homework? :-)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;See the link to the source below.&lt;br&gt;Reply:#include "stdafx.h"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;vector%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;using namespace std;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void OddMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void DoublyEvenMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void SinglyEvenMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void MagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void PrintMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(int argc, char* argv[])&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int n;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  printf("Enter order of square: ");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  scanf("%d", %26amp;n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  vector%26lt;vector%26lt;int%26gt; %26gt; matrix(n, vector%26lt;int%26gt; (n, 0));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if (n%26lt;3)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("\nError: n must be greater than 2\n\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    return -1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  MagicSquare(matrix, n);  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //Print results&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  PrintMagicSquare(matrix, n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void MagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix,int n)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if (n%2==1)        //n is Odd&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    OddMagicSquare(matrix, n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  else          //n is even&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if (n%4==0)    //doubly even order&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      DoublyEvenMagicSquare(matrix, n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    else      //singly even order&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      SinglyEvenMagicSquare(matrix, n);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void OddMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int nsqr = n * n;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int i=0, j=n/2;     // start position&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (int k=1; k%26lt;=nsqr; ++k) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    matrix[i][j] = k;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    i--;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    j++;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    if (k%n == 0) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    { &lt;br&gt;&lt;br /&gt;&lt;br /&gt;      i += 2; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;      --j; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    else &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      if (j==n) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;        j -= n;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      else if (i%26lt;0) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;        i += n;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void DoublyEvenMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  vector%26lt;vector%26lt;int%26gt; %26gt; I(n, vector%26lt;int%26gt; (n, 0));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  vector%26lt;vector%26lt;int%26gt; %26gt; J(n, vector%26lt;int%26gt; (n, 0));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int i, j;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //prepare I, J&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int index=1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i=0; i%26lt;n; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (j=0; j%26lt;n; j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      I[i][j]=((i+1)%4)/2;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      J[j][i]=((i+1)%4)/2;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      matrix[i][j]=index;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      index++;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i=0; i%26lt;n; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (j=0; j%26lt;n; j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      if (I[i][j]==J[i][j])&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        matrix[i][j]=n*n+1-matrix[i][j];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void SinglyEvenMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int p=n/2;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  vector%26lt;vector%26lt;int%26gt; %26gt; M(p, vector%26lt;int%26gt; (p, 0));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  MagicSquare(M, p);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int i, j, k;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i=0; i%26lt;p; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (j=0; j%26lt;p; j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      matrix[i][j]=M[i][j];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      matrix[i+p][j]=M[i][j]+3*p*p;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      matrix[i][j+p]=M[i][j]+2*p*p;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      matrix[i+p][j+p]=M[i][j]+p*p;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  if (n==2)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    return;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  vector%26lt;int%26gt; I(p, 0);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  vector%26lt;int%26gt; J;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i=0; i%26lt;p; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    I[i]=i+1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  k=(n-2)/4;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i=1; i%26lt;=k; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    J.push_back(i);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i=n-k+2; i%26lt;=n; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    J.push_back(i);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (i=1; i%26lt;=p; i++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (j=1; j%26lt;=J.size(); j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      temp=matrix[i-1][J[j-1]-1];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      matrix[i-1][J[j-1]-1]=matrix[i+p-1][J[j-...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      matrix[i+p-1][J[j-1]-1]=temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //j=1, i&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  //i=k+1, k+1+p&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  i=k; &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  j=0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  temp=matrix[i][j]; matrix[i][j]=matrix[i+p][j]; matrix[i+p][j]=temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  j=i;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  temp=matrix[i+p][j]; matrix[i+p][j]=matrix[i][j]; matrix[i][j]=temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void PrintMagicSquare(vector%26lt;vector%26lt;int%26gt; %26gt; %26amp;matrix, int n)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  for (int i=0; i%26lt;n; i++) &lt;br&gt;&lt;br /&gt;&lt;br /&gt;  {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (int j=0; j%26lt;n; j++)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;      printf(" %3d", matrix[i][j]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  printf("\n\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://1love-song.blogspot.com/&gt;love song&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6193964048869390037?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6193964048869390037/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/example-program-of-magic-square-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6193964048869390037'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6193964048869390037'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/example-program-of-magic-square-in-c.html' title='Example program of magic square in c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2050670108788218352</id><published>2009-07-14T22:15:00.001-07:00</published><updated>2009-07-14T22:15:25.671-07:00</updated><title type='text'>What the basic example for C programming language?</title><content type='html'>how to create C language for example record voice and playback....&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What the basic example for C programming language?&lt;br&gt;Are you looking to learn how to write a c program or you know how to program in c and would like to write a program to record voice?&lt;br&gt;Reply:If you have never programmed before, how do you expect to create such a complicated program as what you are describing?                          &lt;span&gt;Report It&lt;/span&gt;&lt;br /&gt;                      &lt;br&gt;Reply:Depends on system since these media libs are system specific&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2050670108788218352?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2050670108788218352/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-basic-example-for-c-programming.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2050670108788218352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2050670108788218352'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-basic-example-for-c-programming.html' title='What the basic example for C programming language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7734610366301986702</id><published>2009-07-14T22:15:00.000-07:00</published><updated>2009-07-14T22:15:10.646-07:00</updated><title type='text'>Write a well documented  program in c-language  to reverse the given no. without using array.?</title><content type='html'>write a well documented  program in c-language  to reverse the given no. without using array.e.g. if input is 456 the output should be 654.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write a well documented  program in c-language  to reverse the given no. without using array.?&lt;br&gt;Do your own homework.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hint: use recursion.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7734610366301986702?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7734610366301986702/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-well-documented-program-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7734610366301986702'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7734610366301986702'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-well-documented-program-in-c.html' title='Write a well documented  program in c-language  to reverse the given no. without using array.?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4339504555968935089</id><published>2009-07-14T22:14:00.003-07:00</published><updated>2009-07-14T22:14:52.412-07:00</updated><title type='text'>How to print output in the "C" language programming?</title><content type='html'>I want to print the output of programme in "C" language&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;is it possible&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to print output in the "C" language programming?&lt;br&gt;Look up the printf() function.  That is a good place to start.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Oh! wait if you want to take it directly to the printer then if you are on unix then you can just pipe your program to the printer device.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;$ myprogram | lpd&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;On Windows, you could save your output to a file and then print that file with notepad.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;c:\dev\myprogram %26gt;output.txt&lt;br&gt;&lt;br /&gt;&lt;br /&gt;c:\dev\notepad output.txt&lt;br&gt;Reply:Here's some examples&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf ("Hello");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;cout%26lt;%26lt;"Hello";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int num = 3;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Num : %d",num)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;cout%26lt;%26lt;"Num : "%26lt;%26lt;num;&lt;br&gt;Reply:Print it how?  Not to be mean but one of the fascinating things about these answers is how everyone interprets your question differently.  I don't think you're irresponsible but it would be nice if you added in additional information whether you want to print it to the screen or to the printer.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I'm on Linux.  I have been for a few years and haven't concerned myself with printing to recent iterations of Windows.  Both Linux and MS-Dos (the ancestor of Windows) took from Unix the policy of treating everything as a file, even device drivers.  Win32 versions like the last ones I did any programming on, continued this.  PRN and LPT1 I believe are the names of the printing device in Windows.  stdout is the name of the screen in C, period.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Cout is just wrong, if you're asking about C rather than C++.  Cout is stdout in the iostream.h library, which is C++, not C.  You send variables to it using the %26lt;%26lt; operator, which is also in iostream.  What I have to say below applies to a C++ program, once it's compiled.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The C output is usually taken care of by one of 2 functions: printf("format string", variable1, variable2...); or fprintf(Outputdevice, "format string", variable1, variable2...);.  You can see how similar they are.  Printf is short for PRINT Format.  Fprintf is short for File PRINT Format.  Printf is the functional equivalent of fprintf(stdout, "format string", ...);  Of course you should read the documentation which will tell you among other things, that if you don't have any variables in your format string, you don't need a comma and variable list after, and you only need as many variables in your list as you have indicated in your format string.  Most C compilers don't have names for your printer, so if your documentation doesn't indicate one you probably can't make fprintf(PRN...) work.  You have two choices.  You can use printf  or you can open up a file and fprintf your output to the file.  Then of course you can send the output file to your printer.  In Unix and in older MS/Dos/Windows you can send it a couple of ways.  In Unix/Linux just type lpr filename or executable_file %26gt; lpr.  In Windows, type executable_file %26gt; prn or print filename.  In Windows you will be asked if you want to overwrite prn.  Answer yes.  Windows treats your prn as a file, but it isn't a file, it's a device, so instead of messing up your driver you will be sending all the characters to the device to print out.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I know this sounds heavy but I'm tired.  I hope it helps.&lt;br&gt;Reply:Use the printf function, which is included in the stdio.h header file.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;To include said header file, simply put #include %26lt;stdio.h%26gt; at the very top of your code (this is a preprocessor instruction).&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Using printf is simple - it takes a single string argument/parameter, and you can use %d, %f etc to substitute with various variables which can also be passed to the function as extra arguments.&lt;br&gt;Reply:For Free C++ Lessons For Beginner&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Enter Programming_Share Group&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Omar Abdallah&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4339504555968935089?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4339504555968935089/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-print-output-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4339504555968935089'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4339504555968935089'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-print-output-in-c-language.html' title='How to print output in the &quot;C&quot; language programming?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-3427593732954407921</id><published>2009-07-14T22:14:00.002-07:00</published><updated>2009-07-14T22:14:36.315-07:00</updated><title type='text'>Help me regarding Computer Ports using C language?</title><content type='html'>Is there any way of sending a stream of bits from Serial or parallel port of my computer using C language?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Help me regarding Computer Ports using C language?&lt;br&gt;Try using functions like inport(for reading the port) and outport(for sending data to the port) in dos.h. These functions require a port no. where U want to send the data and the data (binary data converted into decimal, like U wanna active first 4 data pins of Ur parallel port and deactivate the remaining 4 then U can use the data 11110000, which when converted to decimal gives 240, so enter this value along with the port no. while calling the function).&lt;br&gt;Reply:Yes, in most compilers there are functions called inportB %26amp; outportB that are designed for that.  Look in your compiler's docs.  Also, you can open a file to either divice using a DOS name in a DOS environment.  If, however, you want to create a Win32s API application, then you need to find the API calls to do this.  Start at the URL below.&lt;br&gt;Reply:At codeproject you will find tons of ready projects with full sources.&lt;br&gt;Reply:Certainly. You write to the port just like writing to a file. That is, you create a handle to the "file" and write to it, then close it. I recommend reading the documentation.&lt;br&gt;Reply:yes i tcan be done........... but i donno how to do that...........&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4garden-flowers.blogspot.com/&gt;garden flowers&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-3427593732954407921?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/3427593732954407921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/help-me-regarding-computer-ports-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3427593732954407921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3427593732954407921'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/help-me-regarding-computer-ports-using.html' title='Help me regarding Computer Ports using C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1885877365700896371</id><published>2009-07-14T22:14:00.001-07:00</published><updated>2009-07-14T22:14:20.407-07:00</updated><title type='text'>From where can i get software for "c" language?????</title><content type='html'>Hi i am doing "c" language course.I want the software in which i can practise all the commands and instruction .I mean i have a software called TURBO C++ but it didn't work.please tell me from where i can download it.best answer will be  given 15 points.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;From where can i get software for "c" language?????&lt;br&gt;Visual Studio&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.microsoft.com/express/vc/&lt;br&gt;Reply:A great C/C++ IDE to learn with is Dev-C++:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.bloodshed.net/devcpp.html&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you are more of a command-line guy (or just want to get a *nix type feel), try MinGW or Cygwin:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.mingw.org/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.cygwin.com/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you want the ultimate command-line/native learning experience, install a Linux distro.&lt;br&gt;Reply:Microsoft releases a free version of Visual C++ .NET you can get info here&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.microsoft.com/express/vc/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can also get a compiler here&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.mingw.org/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Hope this helps&lt;br&gt;Reply:You can download the Tiny C compiler at http://fabrice.bellard.free.fr/tcc/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Other C compilers are listed on Wikipedia:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://en.wikipedia.org/wiki/List_of_com...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1885877365700896371?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1885877365700896371/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/from-where-can-i-get-software-for-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1885877365700896371'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1885877365700896371'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/from-where-can-i-get-software-for-c.html' title='From where can i get software for &quot;c&quot; language?????'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2921356419766135978</id><published>2009-07-14T22:14:00.000-07:00</published><updated>2009-07-14T22:14:04.318-07:00</updated><title type='text'>A good book &amp; website for C language ??</title><content type='html'>hey guyz, im starting practicing C LANGUAGE, so i need a name of a good C BOOK %26amp; WEBSITE, so tht i can refer to it .. if get messed up..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;help will be appreciated&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;A good book %26amp; website for C language ??&lt;br&gt;K%26amp;R's The C Programming Language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://cprogramming.com/ &lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://c-faq.com/ &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and finally... GOOGLE.&lt;br&gt;Reply:As the man sez above, google 'tutorial c language'.  Also, K%26amp;R can't be beat, although there are some 'dummies' or 'nutshell' or '...in 24 hours' books that take a different approach.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2calling-cards.blogspot.com/&gt;calling cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2921356419766135978?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2921356419766135978/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/good-book-website-for-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2921356419766135978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2921356419766135978'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/good-book-website-for-c-language.html' title='A good book &amp;amp; website for C language ??'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6511157868130633336</id><published>2009-07-14T22:13:00.001-07:00</published><updated>2009-07-14T22:13:48.036-07:00</updated><title type='text'>Is it possible to learn C language  by self study with specified book and a PC?</title><content type='html'>pls suggest me a c language book for learning from basics!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is it possible to learn C language  by self study with specified book and a PC?&lt;br&gt;yes.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;refer +2 c books for basics.&lt;br&gt;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.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;No, you need to try it out so you have to get an Intergrated Development Environment(IDE) and the complier here is free software.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.download.com/Bloodshed-Dev-C-...&lt;br&gt;Reply:yes and yes&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;bookpool.com &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;cheap books for study,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;else go to devshed.com for answers.&lt;br&gt;Reply:C++ for Dummies. No offense intended. You can find it at Amazon.com.&lt;br&gt;Reply:C by Yashwant Kanetkar. Amazingly easy and lucid.&lt;br&gt;Reply:If you know the computer basics, you can start immediately.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It is always better to have mentor to phase up your learning.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Start with any good book with fewer pages, it gives you confidence when you finish your first book.&lt;br&gt;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.&lt;br&gt;Reply:Yes it is possible to learn C... The best book available is&lt;br&gt;&lt;br /&gt;&lt;br /&gt;"Programming in C by Dennis Ritchie". There is also a book by Lafore but i am not sure abt the Title&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6511157868130633336?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6511157868130633336/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-it-possible-to-learn-c-language-by.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6511157868130633336'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6511157868130633336'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-it-possible-to-learn-c-language-by.html' title='Is it possible to learn C language  by self study with specified book and a PC?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8261494491420549196</id><published>2009-07-14T22:13:00.000-07:00</published><updated>2009-07-14T22:13:32.798-07:00</updated><title type='text'>I want a program in c language that execute ADI method for 2 dimensional parabolic pde?</title><content type='html'>i need a written program in c language to execute ADI method fo a 2 dimensional parabolic pde.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I want a program in c language that execute ADI method for 2 dimensional parabolic pde?&lt;br&gt;You may have to write it yourself.  Have you looked at MatLab or any of those?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Doug&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8261494491420549196?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8261494491420549196/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-want-program-in-c-language-that.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8261494491420549196'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8261494491420549196'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-want-program-in-c-language-that.html' title='I want a program in c language that execute ADI method for 2 dimensional parabolic pde?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-9198437112732143431</id><published>2009-07-12T23:09:00.000-07:00</published><updated>2009-07-12T23:09:10.777-07:00</updated><title type='text'>I always heard about C++ , VIsual Basic and other C language. Can someone explain about Q basic?</title><content type='html'>is it q basic some kind like C++ language? How to use and is there any special system or download or etc.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I always heard about C++ , VIsual Basic and other C language. Can someone explain about Q basic?&lt;br&gt;Here's link regarding QBASIC. You can download it from the link below.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Here is a link for download of Visual Basic for DOS - it's free!&lt;br&gt;Reply:QBASIC is old&lt;br&gt;Reply:QBasic was a programming environment shipped with MS-DOS. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;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.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;QBasic version 4.5 also made exe files.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Visual Basic based its syntax on QBasic.&lt;br&gt;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.&lt;br&gt;Reply:QBasic, the name derived from QuickBasic. The expansion of BASIC is Beginner's All-purpose Symbolic Instruction Code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This is one of the earliest high level programming language using which we can create software programs.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It was originally designed in 1963, by John George Kemeny and Thomas Eugene Kurtz at Dartmouth College.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I don't know what you are trying to achieve using a language that had been frequently in PC DOS era.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C++ is a powerful language based on C programming language that supports structured programming as well as object-oriented programming.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-9198437112732143431?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/9198437112732143431/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-always-heard-about-c-visual-basic-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9198437112732143431'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9198437112732143431'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-always-heard-about-c-visual-basic-and.html' title='I always heard about C++ , VIsual Basic and other C language. Can someone explain about Q basic?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6892828545793481755</id><published>2009-07-12T23:08:00.003-07:00</published><updated>2009-07-12T23:08:55.480-07:00</updated><title type='text'>Sieve of Erathosthenes Algorithm in C++ Language (Finding all prime numbers)?</title><content type='html'>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.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I will appreciate any help.  Partial code, if not all.  Thank you very much.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Sieve of Erathosthenes Algorithm in C++ Language (Finding all prime numbers)?&lt;br&gt;I ran this a long time ago:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://gd.tuwien.ac.at/perf/benchmark/ab...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4pokemon-cards.blogspot.com/&gt;pokemon cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6892828545793481755?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6892828545793481755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/sieve-of-erathosthenes-algorithm-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6892828545793481755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6892828545793481755'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/sieve-of-erathosthenes-algorithm-in-c.html' title='Sieve of Erathosthenes Algorithm in C++ Language (Finding all prime numbers)?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-612764642577958691</id><published>2009-07-12T23:08:00.002-07:00</published><updated>2009-07-12T23:08:39.237-07:00</updated><title type='text'>How to create sudoku in  "C" Language ?</title><content type='html'>Hi all&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i want to know how do i build a program in  "C"  language  that solve sudoku &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thanks all&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to create sudoku in  "C" Language ?&lt;br&gt;Yep, lots already out there.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can go here:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.osix.net/modules/article/?id=...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;or here:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.techfinesse.com/game/sudoku_s...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;or just do a google search for:   solve sudoku c&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You will have lots to read and explore. Bon Voyage!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-612764642577958691?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/612764642577958691/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-create-sudoku-in-c-language_12.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/612764642577958691'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/612764642577958691'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-create-sudoku-in-c-language_12.html' title='How to create sudoku in  &quot;C&quot; Language ?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1193883091386707439</id><published>2009-07-12T23:08:00.001-07:00</published><updated>2009-07-12T23:08:23.699-07:00</updated><title type='text'>How to create sudoku in  "C" Language ?</title><content type='html'>Hi all&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i want to know how do i build a program in  "C"  language  that solve sudoku &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thanks all&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to create sudoku in  "C" Language ?&lt;br&gt;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!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1193883091386707439?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1193883091386707439/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-create-sudoku-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1193883091386707439'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1193883091386707439'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-create-sudoku-in-c-language.html' title='How to create sudoku in  &quot;C&quot; Language ?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6451259292342275396</id><published>2009-07-12T23:08:00.000-07:00</published><updated>2009-07-12T23:08:07.579-07:00</updated><title type='text'>What is Extended Variables in C language?</title><content type='html'>it is related to C language. its a technical question.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is Extended Variables in C language?&lt;br&gt;Do you mean "external" variables.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you do, these are variables that are declared in one file, say foo.c, but referenced in another file, say bar.c.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;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.&lt;br&gt;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.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6451259292342275396?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6451259292342275396/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-extended-variables-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6451259292342275396'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6451259292342275396'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-extended-variables-in-c.html' title='What is Extended Variables in C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4993550471358417831</id><published>2009-07-12T23:07:00.003-07:00</published><updated>2009-07-12T23:07:52.921-07:00</updated><title type='text'>Which is the book for C language?</title><content type='html'>I am new to C language. So need a complete book which can give me complete knowledge of it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Waiting for your reply.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Which is the book for C language?&lt;br&gt;I learned C using books witten by Kris Jamsa.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Kris Jamsa has several books on C but I learned beginers stuff from "C the complete reference" series. I just checked amazon and there are some used versions of this book avalable for around $13&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Everybody has his own style of learning so this might not work for you so I suggest you go to your local bookstore and see if you like the Kris Jamsa style. I had prior programming experience (BASIC) before I started C so some concepts I already knew.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good Luck&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2plum.blogspot.com/&gt;plum&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4993550471358417831?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4993550471358417831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/which-is-book-for-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4993550471358417831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4993550471358417831'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/which-is-book-for-c-language.html' title='Which is the book for C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7574339352745531502</id><published>2009-07-12T23:07:00.002-07:00</published><updated>2009-07-12T23:07:34.691-07:00</updated><title type='text'>How to write this using C language codes?</title><content type='html'>i am writing a program using C language&lt;br&gt;&lt;br /&gt;&lt;br /&gt; a part of the programm to enter names&lt;br&gt;&lt;br /&gt;&lt;br /&gt;whenever i enter a name with nombers the program accept it &lt;br&gt;&lt;br /&gt;&lt;br /&gt;i want a code  or a solution for this prograam &lt;br&gt;&lt;br /&gt;&lt;br /&gt;i want the program  give me error if i wrote a name includes numbers&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to write this using C language codes?&lt;br&gt;can you please clearly tell your exact problem&lt;br&gt;Reply:what???&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;this is a site to give you answers not to ask for a debuger&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and btw dont use c++ use a data program like........... i dunno GOOGLE IT&lt;br&gt;Reply:You get help from http://ccietutorial.com/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7574339352745531502?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7574339352745531502/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-write-this-using-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7574339352745531502'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7574339352745531502'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-write-this-using-c-language.html' title='How to write this using C language codes?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8999844012178456075</id><published>2009-07-12T23:07:00.001-07:00</published><updated>2009-07-12T23:07:19.736-07:00</updated><title type='text'>Write an interactive program in C language to manage the study centre?</title><content type='html'>Write an interactive program in C language to manage the study centre with menu options like student’s details, semester enrolled for, assignments submitted and marks obtained, attendance for the practical courses etc. using the file handling concepts.  The application should be designed user-friendly&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write an interactive program in C language to manage the study centre?&lt;br&gt;I wouldn't write it in C. Sounds like a prime candidate for a database with a web base interface.&lt;br&gt;Reply:Sounds like a senior project.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This will take months to write&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8999844012178456075?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8999844012178456075/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-interactive-program-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8999844012178456075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8999844012178456075'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-interactive-program-in-c-language.html' title='Write an interactive program in C language to manage the study centre?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-3307202888661029997</id><published>2009-07-12T23:07:00.000-07:00</published><updated>2009-07-12T23:07:10.786-07:00</updated><title type='text'>I want a program in "C" Language that reads 2 names into 2 string parameters then replaces between them</title><content type='html'>hi all&lt;br&gt;&lt;br /&gt;&lt;br /&gt;guess thats easy for some ppl, but not for me....&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i just want to create a simple program in "C" language that reads 2 names with scanf function then it puts them into 2 string parameters then it replaces the names in the parameters with each others........&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thats all&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Notice,,,, the names' length isn't limited !!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;thanks alot&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I want a program in "C" Language that reads 2 names into 2 string parameters then replaces between them&lt;br&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;char[] first, second, temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Enter string: ");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;scanf(%26amp;first);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Enter string: ");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;scanf(%26amp;second);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;temp = second;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;second = first;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;first = temp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-3307202888661029997?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/3307202888661029997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-want-program-in-c-language-that-reads.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3307202888661029997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3307202888661029997'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-want-program-in-c-language-that-reads.html' title='I want a program in &quot;C&quot; Language that reads 2 names into 2 string parameters then replaces between them'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7537422316684939158</id><published>2009-07-12T23:06:00.001-07:00</published><updated>2009-07-12T23:06:48.560-07:00</updated><title type='text'>Login and password program in c language?</title><content type='html'>is there anyone who can give the code written in c language . The requirement ic that there sould be at leat 20 login's and passwords but the passwords consist of combination of uppercase , lowercase characters,digits and special characters.But the password should not be like 1234 or AAAA or 1111.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Login and password program in c language?&lt;br&gt;check out &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://krugle.com/ &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;you will find tons and tons of Code&lt;br&gt;Reply:www.imada.sdu.dk/~svalle/courses/dm14-20... - 14k -&lt;br&gt;Reply:I have the one written in C++ but i doubt it works in C as it access the new library functions available in C++&lt;br&gt;Reply:try searching http://www.codeproject.com maybe they will have something that you are looking for. If its close, at least you can modify it to meet your requirements.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2parts-of-a-flower.blogspot.com/&gt;parts of a flower&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7537422316684939158?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7537422316684939158/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/login-and-password-program-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7537422316684939158'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7537422316684939158'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/login-and-password-program-in-c.html' title='Login and password program in c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4887353599912207987</id><published>2009-07-12T23:06:00.000-07:00</published><updated>2009-07-12T23:06:27.350-07:00</updated><title type='text'>Pls tell me simple enimation c language program?</title><content type='html'>tell me animation simple program which run in c language . it will move by mose r any specific keay&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Pls tell me simple enimation c language program?&lt;br&gt;instead of C language you must use C++ language for animations because in C++ there readymade functions.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if you are not satisfied then tell me i will show some tips on C++&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ok&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4887353599912207987?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4887353599912207987/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/pls-tell-me-simple-enimation-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4887353599912207987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4887353599912207987'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/pls-tell-me-simple-enimation-c-language.html' title='Pls tell me simple enimation c language program?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6726029219480324760</id><published>2009-07-12T23:04:00.003-07:00</published><updated>2009-07-12T23:04:54.404-07:00</updated><title type='text'>Some good interesting projects in c language?</title><content type='html'>i got to make a project in c language. which should be of approximatily 2500 lines. so want some good ideas....with description.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Some good interesting projects in c language?&lt;br&gt;Try making a customer service ticking program using a que data structure. Allow "admins" a special password and clients open access. Basically a guest can fill out a ticket, and chose the priority (low,med,high,urgent) which would effect the position on where the request is placed in the que.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Well, i tried.&lt;br&gt;Reply:How about a memory manager?  Re-write malloc and free to manage your own memory pool.  This would be interesting since managing memory won't be that easy dealing with internal fragmentations and memory overflows.  If thats not 2500 lines, then you can add dynamic memory management on top of that.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good luck!&lt;br&gt;Reply:try something like a stack manager which consumes ow amount of memory&lt;br&gt;Reply:A good program would be one that creates sudoku puzzles, or one that solves the puzzles.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It would involve a decent amount of math and checking to validate that the puzzles are correct.&lt;br&gt;Reply:Dear Umang,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you are familiar with Torrents, then these are the source to get the same. Else download a tool called uTorrent from http://www.utorrent.com/ or Bittorrent from www.bittorrent.com/download.ht... &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Also switch over to Firefox as your Browser (You will like it), download it from www.mozilla.com/en-US/firefox/... Firefox has a Torrent Toolbar, which would be of great help to locate your required torrents.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;There are also lots of Indian torrents containing Music, Movies and TV programmes.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Try the above, you will be able to download a lot of stuff you are interested in.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6726029219480324760?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6726029219480324760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/some-good-interesting-projects-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6726029219480324760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6726029219480324760'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/some-good-interesting-projects-in-c.html' title='Some good interesting projects in c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8287639468084961514</id><published>2009-07-12T23:04:00.002-07:00</published><updated>2009-07-12T23:04:38.064-07:00</updated><title type='text'>How to implement fft in C language?</title><content type='html'>I want basic implemnetation of fft in c language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to implement fft in C language?&lt;br&gt;Go to Sourceforge.com and search for FFT utilities.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8287639468084961514?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8287639468084961514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-implement-fft-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8287639468084961514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8287639468084961514'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-implement-fft-in-c-language.html' title='How to implement fft in C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2168920056458645443</id><published>2009-07-12T23:04:00.001-07:00</published><updated>2009-07-12T23:04:21.885-07:00</updated><title type='text'>Print circle,square in c++ language?</title><content type='html'>By using c++ language i want to print  circle,square,rectangle in the output???????????&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Print circle,square in c++ language?&lt;br&gt;y did u havta ask?????????????/&lt;br&gt;Reply:#include "graphics.h"&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main () {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int GraphDriver=0; GraphMode=0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;initgraph (%26amp;GraphDriver ,%26amp;GraphMode, "", 640,480);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;circle(10,10,10);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;rectangle(100,200,300,400);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;rectangle(500,400,600,400);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;Reply:provides programming help and webDesing help&lt;br&gt;&lt;br /&gt;&lt;br /&gt;at&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://webdesignehelp.in/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2mothers-day-flowers.blogspot.com/&gt;mothers day flowers&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2168920056458645443?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2168920056458645443/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/print-circlesquare-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2168920056458645443'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2168920056458645443'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/print-circlesquare-in-c-language.html' title='Print circle,square in c++ language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6550926874108591205</id><published>2009-07-12T23:04:00.000-07:00</published><updated>2009-07-12T23:04:07.179-07:00</updated><title type='text'>Write a program in 'c' language to merge the contents of two binary search trees into one. Also, calculate the</title><content type='html'>Write a program in 'c' language to merge the contents of two binary search trees into one. Also, calculate the time and space complexities of your program?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write a program in 'c' language to merge the contents of two binary search trees into one. Also, calculate the&lt;br&gt;Please sepecify what help is needed, you don't expect us to do your homework for you?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I'll start with:&lt;br&gt;&lt;br /&gt;&lt;br /&gt; the tree is from type node that decalres as:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;typedef struct node {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int value;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  struct node *right;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  struct node *left;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;} node;&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6550926874108591205?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6550926874108591205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-program-in-c-language-to-merge.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6550926874108591205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6550926874108591205'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-program-in-c-language-to-merge.html' title='Write a program in &apos;c&apos; language to merge the contents of two binary search trees into one. Also, calculate the'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8405648792478849972</id><published>2009-07-12T23:03:00.003-07:00</published><updated>2009-07-12T23:03:50.715-07:00</updated><title type='text'>How would you analyze the impact of C language on computer technology?</title><content type='html'>What is extent of influence of C language? How essential is it in today's computer and IT technology? Do you think that the inventor of C language deserves more recognition than he appreciates now?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How would you analyze the impact of C language on computer technology?&lt;br&gt;The syntax and structure of C language influence many of the popular programming and scripting language nowadays like Java, JavaScript, PHP, Perl, and C++.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This implies that student who were taught and got a good grasp of C language will find it easy migrating to other languages mentioned above.&lt;br&gt;Reply:C has had a huge impact in software as a system programming language, as most system software and operating systems are written in C or C/C++.&lt;br&gt;Reply:May be you can contact a C expert to help you for your assignment. Check websites like http://oktutorial.com/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8405648792478849972?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8405648792478849972/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-would-you-analyze-impact-of-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8405648792478849972'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8405648792478849972'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-would-you-analyze-impact-of-c.html' title='How would you analyze the impact of C language on computer technology?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-367937455299425677</id><published>2009-07-12T23:03:00.002-07:00</published><updated>2009-07-12T23:03:34.772-07:00</updated><title type='text'>Where can i find c language in windows ?can anybody name the software any one pls?</title><content type='html'>pls name any c language software so that i can search on net.........&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Where can i find c language in windows ?can anybody name the software any one pls?&lt;br&gt;I uses turbo C3 .It is very good compiler .It can run both c++ and c files.Here is the link and don't forget to define include directory from options%26gt;directory&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://mis.siamcom.co.th/download/Progra...&lt;br&gt;Reply:You can buy it or you can get a copy for nothing.  Go on a search engine and search  for it. C++ . I use metacrawler.com.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-367937455299425677?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/367937455299425677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/where-can-i-find-c-language-in-windows.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/367937455299425677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/367937455299425677'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/where-can-i-find-c-language-in-windows.html' title='Where can i find c language in windows ?can anybody name the software any one pls?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2780812545082891256</id><published>2009-07-12T23:03:00.001-07:00</published><updated>2009-07-12T23:03:19.037-07:00</updated><title type='text'>Is there any good collection of C or C++ language programs available for download?</title><content type='html'>is there any good collection of C or C++ language programs available for download on Internet.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Please give me the website address.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is there any good collection of C or C++ language programs available for download?&lt;br&gt;Good C and C++ language programs are available for free download at&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://kashdelhi.googlepages.com/mywork&lt;br&gt;Reply:http://www.codeproject.com --&lt;br&gt;&lt;br /&gt;&lt;br /&gt;there you will find lots of ready C++ projects.&lt;br&gt;Reply:http://www.cprogramming.com/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.planet-source-code.com/vb/def...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.thefreecountry.com/sourcecode...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.frenzy.com/~jaebear/code/c/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4song-downloads.blogspot.com/&gt;song downloads&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2780812545082891256?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2780812545082891256/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-there-any-good-collection-of-c-or-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2780812545082891256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2780812545082891256'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-there-any-good-collection-of-c-or-c.html' title='Is there any good collection of C or C++ language programs available for download?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2032031545578138990</id><published>2009-07-12T23:03:00.000-07:00</published><updated>2009-07-12T23:03:02.834-07:00</updated><title type='text'>Write a program in c language to evaluate a postfix expression by using a stack illustrate the algorithm with?</title><content type='html'>c language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write a program in c language to evaluate a postfix expression by using a stack illustrate the algorithm with?&lt;br&gt;To evaluate a postfix expression, what you'll do is push every value onto the stack until you reach an operator, once you've reached an operator pop the last two values off the stack, run that operation on them and push the result back onto the stack. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In the end you'll only have one value on the stack which is the answer.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2032031545578138990?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2032031545578138990/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-program-in-c-language-to-evaluate.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2032031545578138990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2032031545578138990'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-program-in-c-language-to-evaluate.html' title='Write a program in c language to evaluate a postfix expression by using a stack illustrate the algorithm with?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1952060065177058635</id><published>2009-07-12T23:02:00.003-07:00</published><updated>2009-07-12T23:02:46.896-07:00</updated><title type='text'>I have studied C programming language and would like to do a small project in C. Can you help me please..?</title><content type='html'>I googled to find any C language projects with the source code but could not find anything otherthan in the" Fresh Meat " site which are all lengthy programs like MPlayer and GCC. I would like to do a project with around 1000 lines and preferrably with details like flowchart..please give me the links , if you know any..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;I have studied C programming language and would like to do a small project in C. Can you help me please..?&lt;br&gt;better go with balaguru swamy&lt;br&gt;Reply:If you want a project that small - make one up!!!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Use your imagination and think of a small utility that you could make,  then design your flowcharts etc and write it!&lt;br&gt;Reply:It is better, you have to make the project from your own ideas.  But sure, you must have some guidence lines from the C projects. with those guidence, you can make your own thing like a small database program to keep track of addresses and telephones or any kind of small utility. You can get ideas from the following book written by YASHAVANT KANETKAR.&lt;br&gt;&lt;br /&gt;&lt;br /&gt; he is having so smart ways to explain the internal arthimidic of C language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Book is C Projects., BPB publications. This is availabe from Hikin Bothams.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1952060065177058635?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1952060065177058635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-have-studied-c-programming-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1952060065177058635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1952060065177058635'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/i-have-studied-c-programming-language.html' title='I have studied C programming language and would like to do a small project in C. Can you help me please..?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2276055564728474246</id><published>2009-07-12T23:02:00.002-07:00</published><updated>2009-07-12T23:02:31.408-07:00</updated><title type='text'>Is the C language something proprietary? [Free &amp; Open source &amp; GPL related question]?</title><content type='html'>So is there a problem using proprietary or commercial packages to create free and open source software (FOSS)? Linux was created using the C-language!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is the C language something proprietary? [Free %26amp; Open source %26amp; GPL related question]?&lt;br&gt;%26gt;%26gt; Is the C language something proprietary?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;No. It's an open standard.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%26gt;%26gt; So is there a problem using proprietary or commercial packages to create free and open source software (FOSS)?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;There's a potential for trouble depending on the package at hand. This statement is obviously an oversimplification.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2276055564728474246?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2276055564728474246/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-c-language-something-proprietary.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2276055564728474246'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2276055564728474246'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-c-language-something-proprietary.html' title='Is the C language something proprietary? [Free &amp;amp; Open source &amp;amp; GPL related question]?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6649917289226344514</id><published>2009-07-12T23:02:00.001-07:00</published><updated>2009-07-12T23:02:16.712-07:00</updated><title type='text'>Want to learn C computer language online?</title><content type='html'>Can you recommend any website which offers lessons for learning C language free?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I am an ABSOLUTE beginner.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks a lot in advance.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;btw, I'm 15.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Want to learn C computer language online?&lt;br&gt;This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The best way to learn a new ``human'' language is to speak it right from the outset, listening and repeating, leaving the intricacies of the grammar for later. The same applies to computer languages--to learn C, we must start writing C programs as quickly as possible. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;An excellent textbook on C by two well-known and widely respected authors is: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; The C Programming Language -- ANSI C &lt;br&gt;&lt;br /&gt;&lt;br /&gt; Brian W. C. Kernighan %26amp; Dennis M. Ritchie &lt;br&gt;&lt;br /&gt;&lt;br /&gt; Prentice Hall, 1988 &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Dennis Ritchie designed and implemented the first C compiler on a PDP-11 (a prehistoric machine by today's standards, yet one which had enormous influence on modern scientific computation). The C language was based on two (now defunct) languages: BCPL, written by Martin Richards, and B, written by Ken Thompson in 1970 for the first UNIX system on a PDP-7. The original ``official'' C language was the ``K %26amp; R'' C, the nickname coming from the names of the two authors of the original ``The C Programming Language''. In 1988, the American National Standards Institute (ANSI) adopted a ``new and improved'' version of C, known today as ``ANSI C''. This is the version described in the current edition of ``The C Programming Language -- ANSI C''. The ANSI version contains many revisions to the syntax and the internal workings of the language, the major ones being improved calling syntax for procedures and standarization of most (but, unfortunately, not quite all!) system libraries. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;1. A First Program &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Let's be polite and start by saluting the world! Type the following program into your favorite editor: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt; stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("\nHello World\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Save the code in the file hello.c, then compile it by typing: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;gcc hello.c&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This creates an executable file a.out, which is then executed simply by typing its name. The result is that the characters `` Hello World'' are printed out, preceded by an empty line. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;A C program contains functions and variables. The functions specify the tasks to be performed by the program. The ``main'' function establishes the overall logic of the code. It is normally kept short and calls different functions to perform the necessary sub-tasks. All C codes must have a ``main'' function. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Our hello.c code calls printf, an output function from the I/O (input/output) library (defined in the file stdio.h). The original C language did not have any built-in I/O statements whatsoever. Nor did it have much arithmetic functionality. The original language was really not intended for ''scientific'' or ''technical'' computation.. These functions are now performed by standard libraries, which are now part of ANSI C. The K %26amp; R textbook lists the content of these and other standard libraries in an appendix. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The printf line prints the message ``Hello World'' on ``stdout'' (the output stream corresponding to the X-terminal window in which you run the code); ``\n'' prints a ``new line'' character, which brings the cursor onto the next line. By construction, printf never inserts this character on its own: the following program would produce the same result: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt; stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("Hello World");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Try leaving out the ``\n'' lines and see what happens. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;The first statement ``#include %26lt; stdio.h%26gt;'' includes a specification of the C I/O library. All variables in C must be explicitly defined before use: the ``.h'' files are by convention ``header files'' which contain definitions of variables and functions necessary for the functioning of a program, whether it be in a user-written section of code, or as part of the standard C libaries. The directive ``#include'' tells the C compiler to insert the contents of the specified file at that point in the code. The ``%26lt; ...%26gt;'' notation instructs the compiler to look for the file in certain ``standard'' system directories. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The void preceeding ``main'' indicates that main is of ``void'' type--that is, it has no type associated with it, meaning that it cannot return a result on execution. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The ``;'' denotes the end of a statement. Blocks of statements are put in braces {...}, as in the definition of functions. All C statements are defined in free format, i.e., with no specified layout or column assignment. Whitespace (tabs or spaces) is never significant, except inside quotes as part of a character string. The following program would produce exactly the same result as our earlier example: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt; stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main(){printf("\nHello World\n");}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The reasons for arranging your programs in lines and indenting to show structure should be obvious! &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2. Let's Compute &lt;br&gt;&lt;br /&gt;&lt;br /&gt;The following program, sine.c, computes a table of the sine function for angles between 0 and 360 degrees. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/************************/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*   Table of */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*   Sine Function*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/************************/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* Michel Vallieres */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* Written: Winter 1995*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt; stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt; math.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int    angle_degree;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    double angle_radian, pi, value;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* Print a header */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf ("\nCompute a table of the sine function\n\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* obtain pi once for all */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* or just use pi = M_PI, where&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   M_PI is defined in math.h */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    pi = 4.0*atan(1.0);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf ( " Value of PI = %f \n\n", pi );&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf ( " angle     Sine \n" );&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    angle_degree=0;/* initial angle value  */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* scan over angle  */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    while (  angle_degree %26lt;= 360 )/* loop until angle_degree %26gt; 360 */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       angle_radian = pi * angle_degree/180.0 ;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       value = sin(angle_radian);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       printf ( " %3d      %f \n ", angle_degree, value );&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;       angle_degree = angle_degree + 10; /* increment the loop index */&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The code starts with a series of comments indicating its the purpose, as well as its author. It is considered good programming style to identify and document your work (although, sadly, most people only do this as an afterthought). Comments can be written anywhere in the code: any characters between /* and */ are ignored by the compiler and can be used to make the code easier to understand. The use of variable names that are meaningful within the context of the problem is also a good idea. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;The #include statements now also include the header file for the standard mathematics library math.h. This statement is needed to define the calls to the trigonometric functions atan and sin. Note also that the compilation must include the mathematics library explicitly by typing &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;gcc sine.c -lm&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Variable names are arbitrary (with some compiler-defined maximum length, typically 32 characters). C uses the following standard variable types: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int    -%26gt; integer variable&lt;br&gt;&lt;br /&gt;&lt;br /&gt;short  -%26gt; short integer&lt;br&gt;&lt;br /&gt;&lt;br /&gt;long   -%26gt; long integer&lt;br&gt;&lt;br /&gt;&lt;br /&gt;float  -%26gt; single precision real (floating point) variable&lt;br&gt;&lt;br /&gt;&lt;br /&gt;double -%26gt; double precision real (floating point) variable&lt;br&gt;&lt;br /&gt;&lt;br /&gt;char   -%26gt; character variable (single byte)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The compilers checks for consistency in the types of all variables used in any code. This feature is intended to prevent mistakes, in particular in mistyping variable names. Calculations done in the math library routines are usually done in double precision arithmetic (64 bits on most workstations). The actual number of bytes used in the internal storage of these data types depends on the machine being used. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;The printf function can be instructed to print integers, floats and strings properly. The general syntax is &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf( "format", variables );&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;where "format" specifies the converstion specification and variables is a list of quantities to print. Some useful formats are &lt;br&gt;&lt;br /&gt;&lt;br /&gt;%.ndinteger (optional n = number of columns; if 0, pad with zeroes)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%m.nffloat or double (optional m = number of columns,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;   n = number of decimal places)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%nsstring (optional n = number of columns)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;%c    character&lt;br&gt;&lt;br /&gt;&lt;br /&gt;\n \t to introduce new line or tab&lt;br&gt;&lt;br /&gt;&lt;br /&gt;\gring the bell (``beep'') on the terminal&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--------------------------------------...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;3. Loops &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Most real programs contain some construct that loops within the program, performing repetitive actions on a stream of data or a region of memory. There are several ways to loop in C. Two of the most common are the while loop: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    while (expression)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;...block of statements to execute...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;and the for loop: &lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (expression_1; expression_2; expression_3)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;...block of statements to execute...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The while loop continues to loop until the conditional expression becomes false.&lt;br&gt;Reply:you can only get help from online but totally you can not get total knowledge of any programming language.but you can try from the link.&lt;br&gt;Reply:Google them&lt;br&gt;Reply:http://cprogramming.com/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;is the best  website for learning c  and c++ online&lt;br&gt;Reply:I dont think u will be able to find complete free c language tutorials or complete project help online. But i suggest that you should try googling for programming language forums or search boardreader.com for c forums. Join the forum and start learning c.. Then u can ask any difficulty at the forum where people will answer your questions. You will find some good c language questions here  http://previouspapers.blogspot.com/2008/...  These are quite good for various placement papers and technical interviews or common project related questions asked by teachers. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;Also you will find studying c language easier when u study from some book from your library and ask the problems on the forums.. good luck.. hope i helped..&lt;br&gt;Reply:http://www.universalclass.com/i/crn/8213...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Go on this sit.It will teach from basics to advanced&lt;br&gt;Reply:I learned C at 12 with LSL. It's in a game called Second Life, it's event-driven, and it's very similar to C.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.secondlife.com/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://easter-cards4.blogspot.com/&gt;easter cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6649917289226344514?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6649917289226344514/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/want-to-learn-c-computer-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6649917289226344514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6649917289226344514'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/want-to-learn-c-computer-language.html' title='Want to learn C computer language online?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1410950990595087685</id><published>2009-07-12T23:02:00.000-07:00</published><updated>2009-07-12T23:02:00.117-07:00</updated><title type='text'>About C programming language?</title><content type='html'>i want to print on the screen the next figure by C language:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.alhariq.net/08U949BAH2GT/ASTR...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;How to make it ? please help, thanks in advance.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;About C programming language?&lt;br&gt;wud u plz clear the question&lt;br&gt;Reply:I am willing to help but can u exlpain exactly what you are trying to do?  I just dont understand at all.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1410950990595087685?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1410950990595087685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/about-c-programming-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1410950990595087685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1410950990595087685'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/about-c-programming-language.html' title='About C programming language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8795125741126306606</id><published>2009-07-12T23:01:00.002-07:00</published><updated>2009-07-12T23:01:43.161-07:00</updated><title type='text'>Hi! my question is regarding to the conversion of C-language code to Assembly Language code?</title><content type='html'>i heard from my teacher that u can easily convert C-laguage code into Assembly language code (.asm file) by writting just one command in dos mode i.e c:\%26gt;tc -b *.cpp this command will automatically generate .asm file with some other files i tried it but it didn't work so vat will be the way to decode c-language file into .asm file?&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Hi! my question is regarding to the conversion of C-language code to Assembly Language code?&lt;br&gt;It depends on the system you are using.  All C compilers create assembly code which is then passed to an assembler.  There is usually an option to create the assembly code but not assemble it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you give me an idea whuch OS?compiler you are using I can probably tell you exactly how to do it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;For example gcc -S will only produce assembler output&lt;br&gt;Reply:I assume you're using Turbo C. Then try running tc -S *cpp instead. According to the manual ( http://bdn.borland.com/article/20997 ) this should produce asm code.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8795125741126306606?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8795125741126306606/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/hi-my-question-is-regarding-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8795125741126306606'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8795125741126306606'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/hi-my-question-is-regarding-to.html' title='Hi! my question is regarding to the conversion of C-language code to Assembly Language code?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4074440077157074796</id><published>2009-07-12T23:01:00.001-07:00</published><updated>2009-07-12T23:01:27.889-07:00</updated><title type='text'>Define tree in c language?</title><content type='html'>c language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Define tree in c language?&lt;br&gt;struct node&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void* data;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;node* left;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;node* right;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;} ;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;have fun.&lt;br&gt;Reply:ctreec&lt;br&gt;Reply:wht's the c language???&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4074440077157074796?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4074440077157074796/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/define-tree-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4074440077157074796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4074440077157074796'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/define-tree-in-c-language.html' title='Define tree in c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1633640819808557898</id><published>2009-07-12T23:01:00.000-07:00</published><updated>2009-07-12T23:01:10.845-07:00</updated><title type='text'>Help needed in c language?</title><content type='html'>am a begginner in c language ...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;when i finish writing a program and execute it ...the execution screen appears and then disappears immediately ....&lt;br&gt;&lt;br /&gt;&lt;br /&gt;can anyone help me how to hold on to the screenn???&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Help needed in c language?&lt;br&gt;This will hold on to the screen by waiting for the user to press a key and prompting them:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;iostream.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int sum;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;sum = 500 + 15;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("The sum of 500 and 15 is %d\n", sum);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;system("PAUSE");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Your problem is that you're running this from outside the command prompt (from windows) so the program terminates straight after your printf statement and windows shuts down the program. If you run this from the MS DOS prompt then the program does terminate but will not close the window down and you can see the printf.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;So you can always use the above method if you don't want to run from DOS.&lt;br&gt;Reply:Uhmm, Im going to go out on a branch here and ask the inevitable question of all time... Did you write your program in the MS-DOS command prompt of your Windows Program. Or do you have a dedicated computer strictly for C++ only? Otherwise I would check for the correct spelling. I can see a few errors in your code as mis-spelled. You write code- It HAS to BE .. How should I put it? Exact/Precise/Flawless&lt;br&gt;Reply:Your program runs from the part called main to the end. and when it ends it quits unless you give it reason not to.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;you see in c, a program is made up of functions. for example printf(), scanf() etc. these functions each have something specific they do. Now to stop your program from exiting. add a funtion that stops it from doing so. there are many fucntions. but i will give two&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;1. getch();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2. getchar();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;now change your program to look like this&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int sum;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;sum = 500 + 15;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("The sum of 500 and 15 is %d\n", sum);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;getchar();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;or change it to look like this&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;conio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int sum;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;sum = 500 + 15;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("The sum of 500 and 15 is %d\n", sum);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;getch();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;Reply:It might be because of the IDE you are using to run your code. Which one do you use? Dev-C++? &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;There are a few ways to keep your execution command prompt -- depending on the IDE you use.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can put cin statement at the end of your main class, just so the comman prompt won't just shut off.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Or you can use some system command to pause your program.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Or you can set a breakpoint in your program and run it in debug mode.&lt;br&gt;Reply:Use getch(); function after the last statement..... This allows you to hit any key from ur Keyboard until the screen is disappeared..... The screen waits with the output for you to enter something to get disappear...&lt;br&gt;Reply:There doesn't seem to be a problem in the code, it may be in the compiler.&lt;br&gt;Reply:Show us the code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If all you want to do is make the screen stay in the program then add this as the last statement inside &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;main ()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;getc();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Then to exit the program press the Enter key.&lt;br&gt;Reply:char c;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;cin %26gt;%26gt; c;&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2brenda-song.blogspot.com/&gt;brenda song&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1633640819808557898?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1633640819808557898/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/help-needed-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1633640819808557898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1633640819808557898'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/help-needed-in-c-language.html' title='Help needed in c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-3820552744608533909</id><published>2009-07-12T23:00:00.003-07:00</published><updated>2009-07-12T23:00:55.060-07:00</updated><title type='text'>How can i download  the Software C Language and C++?</title><content type='html'>Software C language and C++&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can i download  the Software C Language and C++?&lt;br&gt;Microsoft offers a development environment 'light' - I believe it is free.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Another free one is the GCC compiler.  Download and run the 'cygwin' (search for it on google) setup program; select the GCC compiler from the packages.  It will be downloaded and installed and you'll have a free, legal and widely used C++ compiler.&lt;br&gt;Reply:C %26amp; C++ are dos based softwares that you can use to run the above mentioned programs which you can find on the net. However you will also have Windows based software to run these programs. You can download Turboc by Borland from the following site:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;www.programmersheaven.com/download/661...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-3820552744608533909?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/3820552744608533909/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-download-software-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3820552744608533909'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/3820552744608533909'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-download-software-c-language.html' title='How can i download  the Software C Language and C++?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-87538113536032541</id><published>2009-07-12T23:00:00.002-07:00</published><updated>2009-07-12T23:00:38.388-07:00</updated><title type='text'>How to study 'c' language easily?</title><content type='html'>am an engg. student  and am very weak in c language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;how i devolope it&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How to study 'c' language easily?&lt;br&gt;http://cprogramming.com   &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.uow.edu.au/~nabg/ABC/ABC.html&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.loveshack.org/forums/misc.php... &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://forums.devshed.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; http://www.w3schools.com/html/default.as...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-87538113536032541?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/87538113536032541/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-study-c-language-easily.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/87538113536032541'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/87538113536032541'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-to-study-c-language-easily.html' title='How to study &apos;c&apos; language easily?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6439424885515836723</id><published>2009-07-12T23:00:00.001-07:00</published><updated>2009-07-12T23:00:23.264-07:00</updated><title type='text'>Write a simple C language program to that uses fork() system call to create a child process that prints  "VIRT</title><content type='html'>Write a simple C language program to that uses fork() system call to create a child process that prints  "VIRTUAL UNIVERSITY" to the screen, and exits.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write a simple C language program to that uses fork() system call to create a child process that prints  "VIRT&lt;br&gt;Does you instructor want a flowchart too?&lt;br&gt;Reply:We Can Code For You And Also Make You Understand-Contact Us At&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://expert.myitcareer.org/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://yahoo.com/ Is Best Site In World&lt;br&gt;Reply:how abt this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if(fork()) /*creates child process and run if its its the child*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  printf("VIRTUAL UNIVERSITY") ;/*prints the thing*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  exit(0) ;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*the parent process continues to run*/&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6439424885515836723?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6439424885515836723/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-simple-c-language-program-to-that.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6439424885515836723'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6439424885515836723'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-simple-c-language-program-to-that.html' title='Write a simple C language program to that uses fork() system call to create a child process that prints  &quot;VIRT'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1714342520459745332</id><published>2009-07-12T23:00:00.000-07:00</published><updated>2009-07-12T23:00:08.565-07:00</updated><title type='text'>Write this n C-language? Multiply value of variable x by value of variable y &amp; store result n variable z?</title><content type='html'>Also how do you write this in C-language:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Increment the value of variable x.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Decrement the value of variable y&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Compare the value of variable x and y for equality&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write this n C-language? Multiply value of variable x by value of variable y %26amp; store result n variable z?&lt;br&gt;z = x * y&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;++X or X++ (dependant upon the requirement)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--y or y-- (dependant upon the requirement)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;x == y (you would want to store the resulting boolean value in a bool type variable)&lt;br&gt;Reply:i don't now what you really want. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;but there is too many choise to do it and &lt;br&gt;&lt;br /&gt;&lt;br /&gt; if you wish use the value of the variable while that one is decrement or increment you need use a bucle, but first let me show how its work:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;increment any varible in one :&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;x++ or ++x;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;each one have diferent result. for example :&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if the value of the variable x is 5 and we are using x++ begin of:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;x++;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;d=x+3;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;d=9;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but if you use ++x;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;++x;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;d=x+3;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;d=8;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;so, when you use ++ before of any variable first use the value of the variable and the, it'll increment that varible, and when you use ++ after of any variable first increment the variable in one and them do the operations with.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;its the same when you use -- to decrement a variable.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;them than ones (++/---)  is usually used in a bucle (for/while/dowhile), cause is more workfull there, so to compare a variable in c. must use the operator == that means equals. for example:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;a==b// if a=3 and b=3 the result will be true.&lt;br&gt;Reply:hi. im 15 years old , and i have been programming for 4 years and i think i can prob help :)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;x++  // this increments the variable x.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;y--   // this decrements the variable y.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if(x == y)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// they are equal!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;else&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// they are not equal!&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;Reply:i dont know C, so if you want a direct answer,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i have no idea.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but most mathmatical functions in scripting&lt;br&gt;&lt;br /&gt;&lt;br /&gt;languages are fairly similar.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;in javascript, it would be:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;var xValue = [x input here]&lt;br&gt;&lt;br /&gt;&lt;br /&gt;var yValue = [y input here]&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;var Z = (xValue*yValue);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i dont know if it would look any similar to that,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;but i hope it helps sorta.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://bouquet2.blogspot.com/&gt;bouquet&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1714342520459745332?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1714342520459745332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-this-n-c-language-multiply-value.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1714342520459745332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1714342520459745332'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-this-n-c-language-multiply-value.html' title='Write this n C-language? Multiply value of variable x by value of variable y &amp;amp; store result n variable z?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-2420185757063819182</id><published>2009-07-12T22:59:00.003-07:00</published><updated>2009-07-12T22:59:52.932-07:00</updated><title type='text'>Who knows the C language? Can you help me?</title><content type='html'>Im currently taking up the C language in school. Its an elective and i wanna pass the subject with high marks.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Who knows the C language? Can you help me?&lt;br&gt;read the book&lt;br&gt;Reply:You chose a tough language as an elective.  You need to find someone local to tutor you in it.  It strength is that it is remarkably flexible.  Its difficulty is that it is remarkably flexible.  You could look at the faq from the following newsgroup, as the questions come up alot, you will probably have some of them.  Save yourself time, read them now.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.faqs.org/faqs/C-faq/faq/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Here is a page of links. http://home.att.net/~jackklein/c/c_links...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Here is the wiki on it:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://en.wikipedia.org/wiki/C_programmi...&lt;br&gt;Reply:I gave more information on the basis of C Programes. Please asked to me your questions.  Which field in you are doubt.  You don't worry I helped to you in everytime.&lt;br&gt;Reply:I could suggest u some fundamental books in C. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;1. "Let Us C" by Yashwant Kanetkar&lt;br&gt;&lt;br /&gt;&lt;br /&gt;2. Schaum's Outline of Programming with C  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;3. The C Programming Language by Brian W. Kernighan and Dennis M. Ritchie.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;4. C How to Program by Deitel and Deitel&lt;br&gt;&lt;br /&gt;&lt;br /&gt;5. Programming in ANSI C by Stephen Kochan&lt;br&gt;&lt;br /&gt;&lt;br /&gt; I better suggest u to read some more good books and practice the programs with a PC. U will soon realize that C is not such a tough language. It has much more powers, once u master it, u can play with those powers. &lt;br&gt;&lt;br /&gt;&lt;br /&gt; Practice makes Perfection...&lt;br&gt;Reply:Hello Francis you have chosen the best programming language as your elective...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C is considered to be the basic of todays programming...though basic C is not used much in programming...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;But if you learn C, you can learn any other language easily..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Better go for books rather than the net...and programming practice is more important than book reading as far as programming is concerned...&lt;br&gt;Reply:do soem web searches there are loads of online help on C&lt;br&gt;Reply:do some web searches for tutes&lt;br&gt;Reply:Francis, don't be such a loser, get it on with the books!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-2420185757063819182?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/2420185757063819182/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/who-knows-c-language-can-you-help-me.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2420185757063819182'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/2420185757063819182'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/who-knows-c-language-can-you-help-me.html' title='Who knows the C language? Can you help me?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1356733327099192689</id><published>2009-07-12T22:59:00.002-07:00</published><updated>2009-07-12T22:59:36.789-07:00</updated><title type='text'>How can i convert a program designed in C language into an equivalent 8085 assembly language?</title><content type='html'>I know c language by heart and have done projects related to software and hardware interactions, i have also studied 8085 assembly language in my graduation... So what i like to design some projects on hardware and software interactions on 8085 microprocessor assembly language. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;So my question to everybody out there is that is there any way or software that can convert program written in Clanguage into an equivalent 8085 microprocessor assembly language. could someone guide me through this question...&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How can i convert a program designed in C language into an equivalent 8085 assembly language?&lt;br&gt;The clear answer is that you need an 8085 C compiler. Googling for "8085 C Compiler" turns up several hits.&lt;br&gt;Reply:yeah ,... you have to search for an emulator that does that ...&lt;br&gt;Reply:You probably want to get gcc.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Compile the "C" using gcc -S which will create assembly language code.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You will have to tailor gcc so that it produces 8085 code.  That process cannot be explained in this small area.  Go to the gcc site and look at the mechanisms for having gcc cross compile.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://gcc.gnu.org/install/configure.htm...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I cannot guarantee that gcc will cross compile to 8085.  I also cannot guarantee that your processor will execute 8085 code.  I think the intel machines are downward compatible but you would need to check.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1356733327099192689?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1356733327099192689/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-convert-program-designed-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1356733327099192689'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1356733327099192689'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-can-i-convert-program-designed-in-c.html' title='How can i convert a program designed in C language into an equivalent 8085 assembly language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4797562232106055995</id><published>2009-07-12T22:59:00.001-07:00</published><updated>2009-07-12T22:59:21.309-07:00</updated><title type='text'>What is the C language for this?</title><content type='html'>Please help me form the C language for this program.. Thanks..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Create a program that allows entering of 5 letters. Then display the 4th letter four times, 3rd letter three times, 2nd two times and 1st once. -Is loop needed on this one? Will somebody give me the right codes for this.. If loop is needed please indicate it two ways..vertical and horizontal..&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is the C language for this?&lt;br&gt;In order for us to be able to HELP you do it, rather than DO IT FOR YOU, we need to know what you have so far.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;(I'm pretty sure that 'it' should be replaced with  'your homework' in the sentence above.)&lt;br&gt;Reply:You might consider contacting a C expert at websites like http://getafreelnacer.com/&lt;br&gt;Reply:Is anyone looking looking for JAWS Scripting contract work? If so please let me know.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Wendy&lt;br&gt;Reply:I don't know what you mean by vertical and horizontal loops, but two loops (one embedded) are needed to print out each letter an "index-1" number of times.  Array indices start at 0 in C, but we iterate through the array starting at 1.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Below is the code to a possible solution (indentation is not preserved):&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdlib.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main(void)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    int i, j;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    char letter[5];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("Enter five letters: ");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    scanf("%c %c %c %c %c", %26amp;letter[0], %26amp;letter[1], %26amp;letter[2], %26amp;letter[3], %26amp;letter[4]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    printf("Now print each character (index-1) number of times.\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    for (i = 1; i %26lt;= 5; i++) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        for (j = 1; j %26lt;= i; j++) {&lt;br&gt;&lt;br /&gt;&lt;br /&gt;            printf("%c ", letter[i-1]);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;        printf("\n");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    }&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;It was compiled using the following:  gcc -o letters letters.c&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You can copy/paste the above code into your editor.  I'm assuming that you're using a Unix/Linux platform.   The program prompts the user for five letters.  Enter them separated with spaces.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Below is the output:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Enter five letters: f a c e s&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Now print each character (index-1) number of times.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;f &lt;br&gt;&lt;br /&gt;&lt;br /&gt;a a &lt;br&gt;&lt;br /&gt;&lt;br /&gt;c c c &lt;br&gt;&lt;br /&gt;&lt;br /&gt;e e e e &lt;br&gt;&lt;br /&gt;&lt;br /&gt;s s s s s&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4797562232106055995?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4797562232106055995/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-c-language-for-this.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4797562232106055995'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4797562232106055995'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-c-language-for-this.html' title='What is the C language for this?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-5647237139305612942</id><published>2009-07-12T22:59:00.000-07:00</published><updated>2009-07-12T22:59:02.809-07:00</updated><title type='text'>In C Language, HOW DO i STORE FOR Eg. DETAILS OF A PERSON USING STRUCTURES AND DISPLAY ALL DETAILS ON SCREEN?</title><content type='html'>i would like to write a program in C language that takes the details of a person eg. name address age telephone number etc.. by using structures.. and be able to display the whole information or details on the screen.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;In C Language, HOW DO i STORE FOR Eg. DETAILS OF A PERSON USING STRUCTURES AND DISPLAY ALL DETAILS ON SCREEN?&lt;br&gt;/*set up a struct like so:*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdlib.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include %26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;struct person&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  char name[30], address[50];&lt;br&gt;&lt;br /&gt;&lt;br /&gt;  int age,telephone;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;};&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*variable of type persons*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt; struct person details;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*read*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("Name:");&lt;br&gt;&lt;br /&gt;&lt;br /&gt; fgets(details.name, 30,stdin);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("Address:");&lt;br&gt;&lt;br /&gt;&lt;br /&gt; fgets(details.address,50,stdin);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("Age:");&lt;br&gt;&lt;br /&gt;&lt;br /&gt; scanf("%d",%26amp;(details.age));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("Number:");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;scanf("%d",%26amp;(details.telephone));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/*print*/&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("\nprinting data");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Name: %s",(details.name));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Address: %s",(details.address));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Age: %d\n",(details.age));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Number: %d\n",(details.telephone));&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;return 0;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;/* subtle things to note, use fgets when someone might include a space in their input, but remember fgets will store the \n character, so keep that in mind when printing it */&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4yu-gi-oh-cards.blogspot.com/&gt;yu gi oh cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-5647237139305612942?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/5647237139305612942/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-c-language-how-do-i-store-for-eg.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5647237139305612942'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5647237139305612942'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-c-language-how-do-i-store-for-eg.html' title='In C Language, HOW DO i STORE FOR Eg. DETAILS OF A PERSON USING STRUCTURES AND DISPLAY ALL DETAILS ON SCREEN?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6360809946249863</id><published>2009-07-12T22:58:00.002-07:00</published><updated>2009-07-12T22:58:48.591-07:00</updated><title type='text'>In c language, can i get single line program without curling braces?</title><content type='html'>programming language -c&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;In c language, can i get single line program without curling braces?&lt;br&gt;No, as every C program must include main function and definitely it will be with curly braces.&lt;br&gt;Reply:nope.U'll crash ur pc.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6360809946249863?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6360809946249863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-c-language-can-i-get-single-line.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6360809946249863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6360809946249863'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-c-language-can-i-get-single-line.html' title='In c language, can i get single line program without curling braces?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-5561948256557187231</id><published>2009-07-12T22:58:00.001-07:00</published><updated>2009-07-12T22:58:32.349-07:00</updated><title type='text'>Write a programme  i C Language to merge three Tables.?</title><content type='html'>How to merge three tables.Write programme using C/C++ language.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write a programme  i C Language to merge three Tables.?&lt;br&gt;What do you mean by "tables"? Multidimensional arrays? Please elaborate.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Also, what style of merge (additive, differential, multiplicative, exponential, etc.)?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You're going to need way more details to get a just answer.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-5561948256557187231?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/5561948256557187231/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-programme-i-c-language-to-merge.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5561948256557187231'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5561948256557187231'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-programme-i-c-language-to-merge.html' title='Write a programme  i C Language to merge three Tables.?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-5835985903601030271</id><published>2009-07-12T22:58:00.000-07:00</published><updated>2009-07-12T22:58:16.005-07:00</updated><title type='text'>What is pionters in "c" language?</title><content type='html'>I cannot understand "c" language . my sir is telling in "c" pionters are very important. explain about pointers.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is pionters in "c" language?&lt;br&gt;A "pointer" is a variable that holds a memory address. In C, they are declared like this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int c; // integer variable&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int *ptr_c; //pointer to integer variable&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;To initialise the pointer, you need to use the address operator (%26amp;) like this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;ptr_c = %26amp;c;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;This assigns the memory address or lvalue to the pointer variable c_ptr. You use this to communicate between functions by using pointers to pass the value of the pointer to a function that you call. In the body of the program that pointer *ptr_c refers to the value (rvalue) that is stored at the address ptr_c.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Think of a pointer as being a mailbox address and the variable the pointer points to as the actual mail itself. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Note: Use of uninitialized pointers (dangling pointers) is a leading cause of bugs in C/C++.&lt;br&gt;Reply:as an example, pointer to int will be like 'int *ptr;'.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;When the parser look at a statement like this, it will enter the '*' in its own place.  next time, when ptr is used, the compiler will look up the ptr's field.  there, a '*' will be seen.  here the '*' will instruct the compiler that the ptr itself is not containing the value we are looking for, but the value stored in ptr is the address where the value we are loking for is stored.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;baah! read your prescribed books, discuss at your study groups.&lt;br&gt;Reply:You have to learn basic concepts of C-Language and then you can go to learn advanced concepts of C-Language like pointers, structure etc. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;In short pointers are those variables which holds the address of another variable. &lt;br&gt;&lt;br /&gt;&lt;br /&gt;eg:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int a=10; //this statement defines integer type variable "a";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int *p;  //this statement defines a pointer varibale "p" which     will point to(or hold the address of integer type variable)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;p=%26amp;a; //this stores address of variable "a" to pointer "p";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("%d", *p); //prints value at address stored in  "p" i.e 10;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;print("%d",p);//prints address of "a" stored in "p";&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;for more information visit my blog&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://codesbyshariq.blogspot.com&lt;br&gt;Reply:http://home.netcom.com/~tjensen/ptr/poin...&lt;br&gt;Reply:Simply Pointer is the variable that stores the address of another variable.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;int p,*pp;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;p=4;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// now p contains value 4&lt;br&gt;&lt;br /&gt;&lt;br /&gt;pp=%26amp;p;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;// and pp contains address of p&lt;br&gt;Reply:Pointers are memory locations which stores data and address of that memory location. You can check it out if you type &lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("%d",*ptr); it will show you the contents of the address and&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("%ld",%26amp;ptr); it will show the address&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if *ptr++ then the data gets added by one&lt;br&gt;&lt;br /&gt;&lt;br /&gt;if ptr++ then the adress gets incremented by one&lt;br&gt;Reply:U meant Pointers, well its an address for memory of the computer which can be directly used in C programming.&lt;br&gt;Reply:Well its simple you can get good definition of it at wikipedia.com .but ill give you a simple example for this .&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;guess you ,myself and another friend of yours are close friend group. your friend is gone to meet the doctor ,you come and ask me where is your friend ill reply to you saying that your friend has gone to meet the doctor .so you will come to know that your friend has gone to meet the by me .&lt;br&gt;&lt;br /&gt;&lt;br /&gt;so i become a pointer of your friend i point you to him ,thats it &lt;br&gt;&lt;br /&gt;&lt;br /&gt;that was a example of an pointer ...bye&lt;br&gt;Reply:Pointer is a data type that store the memory reference (memory address) of another value (variable) in the memory.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Refer wikipedia for full explanation&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://en.wikipedia.org/wiki/Pointer&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-5835985903601030271?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/5835985903601030271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-pionters-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5835985903601030271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/5835985903601030271'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-pionters-in-c-language.html' title='What is pionters in &quot;c&quot; language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6813719768046098165</id><published>2009-07-12T22:57:00.003-07:00</published><updated>2009-07-12T22:57:59.048-07:00</updated><title type='text'>How is GRAPHICS using C++ LANGUAGE is GENERATED? PLEASE ANSWER.?</title><content type='html'>I desperately want to know that using what features of C++ Language. (Maybe sounding silly but is it by using something like Polymorphism, Inheritance, templates or something else for that matter.)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;          And is that topic included in the following book (please look at the table of contents posted there) which claims to be a complete reference to C++&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     http://www.mhprofessional.com/product.ph...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I want to know how the graphics is generated in OS's like Windows XP and MAC's. The last time I asked this question-- someone answered WIN32. What the hell is WIN32 and who is asking for that rather I would like to know that if its WIN32, how is THAT written(using what features) ?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Please give a simple worded and understandable answer.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;How is GRAPHICS using C++ LANGUAGE is GENERATED? PLEASE ANSWER.?&lt;br&gt;You won't find a good answer to this question.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The reason is that c++ does not have a graphics API.  It is a relatively low level language.  It needs to call on some kind of library to generate the graphics (unless it is the library or it contains the library).  On Windows platforms that is the GDI subset of the WIN32 API, generally wrapped in a class library such as MFC or within the .NET framework.  On a lower level for games programming on Windows you would use DirectX.  One great cross platform library is OpenGL which works on Windows, Apple and UNIX platforms.  UNIX platforms use libraries built upon the X Server.  If you want to bypass the operating system's libraries then you would have to write your own drivers for the host computer's graphics hardware.  Trust me; this won't be easy.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;A completely different way to answer this question would be about generating graphics data instead of graphical output direct to hardware.  Libraries like GD would be of use for you if you wanted to generate graphics from a c++ web application which would have to generate GIF, PNG or JPG files.  Such an app based on a different library could even generate Flash or SVG.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Your question is far too open ended to generate any real quality answers.  I hope my humble attempt at an answer at least will help you to ask questions which will better bring you to your goal.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://thank-you-cards2.blogspot.com/&gt;thank you cards&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6813719768046098165?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6813719768046098165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-is-graphics-using-c-language-is.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6813719768046098165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6813719768046098165'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/how-is-graphics-using-c-language-is.html' title='How is GRAPHICS using C++ LANGUAGE is GENERATED? PLEASE ANSWER.?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-9217883156481188058</id><published>2009-07-12T22:57:00.002-07:00</published><updated>2009-07-12T22:57:42.439-07:00</updated><title type='text'>Is Visual Basic A C language?</title><content type='html'>if not. Can anyone give me the link to microsoft developers network where i could download the C software? or any good link for the c language.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Is Visual Basic A C language?&lt;br&gt;Why are C and C++ programmers so contemptuous of Visual Basic?  I've used both C and VB a lot, for years and years and years, and it's "horses for courses".  If you can do it in VB, then do it, it's good.  But there are some things you can't, so use C or C++.  No single language is the answer to every problem.&lt;br&gt;Reply:No It isnt, but you can still get C++ which is like an upgraded version of C from microsoft. Pay though :-)&lt;br&gt;Reply:Nope it's the basic language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I don't think Microsoft does C anymore, just C++.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Check out these tools and tutorials that you can find here on just about any language, well not quite :)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://freebyte.com/programming/&lt;br&gt;Reply:Visual Basic is BASIC, Borland does "C," but I don't think you can download the language, legally.&lt;br&gt;Reply:No no no, it's soooo not C. C is a programming language, Visual Basic is a child's toy.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Rawlyn.&lt;br&gt;Reply:No, Visual Basic is not a member of the C/C++ family of computer languages.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you want a Microsoft C compiler (and you seem to want one), go to http://msdn.microsoft.com/visualc/ and click on the "Download the Free Visual C++ 2005 Express Edition" link.  A C++ compiler can also handle C code.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-9217883156481188058?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/9217883156481188058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-visual-basic-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9217883156481188058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/9217883156481188058'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/is-visual-basic-c-language.html' title='Is Visual Basic A C language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1433489726828900356</id><published>2009-07-12T22:57:00.001-07:00</published><updated>2009-07-12T22:57:30.646-07:00</updated><title type='text'>Cai I Download Turbo C Language For Free ! what is the URL to download ! Please Help me !?</title><content type='html'>Cai I Download Turbo C Language For Free ! what is the URL to download ! Please Help me !  [ TURBO C ]&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Cai I Download Turbo C Language For Free ! what is the URL to download ! Please Help me !?&lt;br&gt;You can go to the Borland Museum site and download it.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://community.borland.com/article/208...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Arizona State has it&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.acms.arizona.edu/education/op...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;or ProgrammersHeaven has it &lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.programmersheaven.com/downloa...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;You should run a virus scanner on the files before installing anything  you download from the Internet.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good Luck with your programming.&lt;br&gt;Reply:if u want i can send u the tc                          &lt;span&gt;Report It&lt;/span&gt;&lt;br /&gt;                      &lt;br&gt;Reply:Here is a place where you can download free versions of all the new Turbo products:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.turboexplorer.com/&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The C product is actually a C++ compiler.  I don't know if you were only looking for the older C product, but C++ can compile straight C, too.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I hope that this helps!&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1433489726828900356?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1433489726828900356/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/cai-i-download-turbo-c-language-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1433489726828900356'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1433489726828900356'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/cai-i-download-turbo-c-language-for.html' title='Cai I Download Turbo C Language For Free ! what is the URL to download ! Please Help me !?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-6966531475637503835</id><published>2009-07-12T22:57:00.000-07:00</published><updated>2009-07-12T22:57:13.183-07:00</updated><title type='text'>Using the C language what statement would you use?</title><content type='html'>Using the C language what statement would you use that will have the program ask for a #, and then use it in the distance formula? (is it scan or a float, or something else)&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Using the C language what statement would you use?&lt;br&gt;double d;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("Enter a distance: ");&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;scanf("%f",%26amp;d);&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;printf("You entered: %f\n", d);&lt;br&gt;Reply:If this is a basic intro homework assignment, scanf will work fine. Make sure you use the correct %_ and don't forget to pass your variable into scanf by reference.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Then go ahead and use that variable in the distance formula.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-6966531475637503835?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/6966531475637503835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/using-c-language-what-statement-would.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6966531475637503835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/6966531475637503835'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/using-c-language-what-statement-would.html' title='Using the C language what statement would you use?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-1035761973072065360</id><published>2009-07-12T22:56:00.003-07:00</published><updated>2009-07-12T22:56:54.138-07:00</updated><title type='text'>Information about C language projects?</title><content type='html'>i want to make a project in C language. the topic of project is     "Calculator".&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Information about C language projects?&lt;br&gt;do u need code or project detail if u need code i have or if u want help for coding then visit website&lt;br&gt;&lt;br /&gt;&lt;br /&gt;www.cprogramming.com&lt;br&gt;Reply:You should not copy it from anywhere you will get caught by your prof easily&lt;br&gt;&lt;br /&gt;&lt;br /&gt;rather get some help from&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://expert.itutorial.info/ and do it yourself&lt;br&gt;Reply:this is very easy....i had c language in my previous semester....do dis program of calculator using switch loop....it is vry easy...if u want sumthg more related 2 c language or dis project of urs...contact me...&lt;br&gt;Reply:To do some projects in 'C' Language....&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;First Try using 'C' Projects Books by Kanetkar.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;then you can go the following websites,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;www.programmersheaven.com&lt;br&gt;&lt;br /&gt;&lt;br /&gt;www.codeproject.com....and lot if you just start...l&lt;br&gt;Reply:www.cprogramming.com&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://2potential-breakup-song.blogspot.com/&gt;potential breakup song&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-1035761973072065360?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/1035761973072065360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/information-about-c-language-projects.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1035761973072065360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/1035761973072065360'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/information-about-c-language-projects.html' title='Information about C language projects?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4754031202354208337</id><published>2009-07-12T22:56:00.002-07:00</published><updated>2009-07-12T22:56:39.894-07:00</updated><title type='text'>What is c language?</title><content type='html'>c is computer programming language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What is c language?&lt;br&gt;sandeshkumbhr well here is your answer &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Definitions of C language on the Web:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;    * The C programming language is a standardized programming language developed in the early 1970s by Ken Thompson and Dennis Ritchie for use on the UNIX operating system. It has since spread to many other operating systems, and is one of the most widely used programming languages. C is prized for its efficiency, and is the most popular programming language for writing system software, though it is also used for writing applications. ...&lt;br&gt;Reply:Yeah it is a programing language but you get c++ and C# which is newest one.&lt;br&gt;Reply:C, C+, C++ are all (like you said) computer programming languages . You can do things like program a game or what ever with that language.&lt;br&gt;Reply:It is a computer language that is not used too much these days. Learn C++.&lt;br&gt;Reply:Looks like you answered your own question.&lt;br&gt;Reply:You answered your own question man...&lt;br&gt;Reply:BCPL-%26gt;B-%26gt;C-language&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4754031202354208337?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4754031202354208337/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4754031202354208337'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4754031202354208337'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-is-c-language.html' title='What is c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7607184089390134608</id><published>2009-07-12T22:56:00.001-07:00</published><updated>2009-07-12T22:56:24.228-07:00</updated><title type='text'>Ebooks for c language?</title><content type='html'>wheres a good place to get free ebooks that teach about the c language for programming. im new to programming, so any ebooks that give tutorials would be nice.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Ebooks for c language?&lt;br&gt;ive never yet seen such a %26lt;a href="http://www.perlisbooks.com/vbks/fr...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;"%26gt;FREE MEGA EBOOK DOWNLOAD%26lt;/a%26gt;&lt;br&gt;Reply:The C Book is online at: http://www.freebookzone.com/goto.php?bkc...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Learning GNU C: http://www.freebookzone.com/goto.php?bkc...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Your Public Library may have additional eBooks for temporary downloading.&lt;br&gt;Reply:I enjoyed this one when I started&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.cplusplus.com/doc/tutorial/&lt;br&gt;Reply:You can also check free programming ebooks website like http://myitcareer.org/ .&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7607184089390134608?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7607184089390134608/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/ebooks-for-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7607184089390134608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7607184089390134608'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/ebooks-for-c-language.html' title='Ebooks for c language?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4196652058088851590</id><published>2009-07-12T22:56:00.000-07:00</published><updated>2009-07-12T22:56:07.714-07:00</updated><title type='text'>Fenv.h C language source code for cygwin?</title><content type='html'>Hi all, someone can please give me a link or paste here the source code C language of fenv.h?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;i need it to implement traps of error into arithmetical operation. thanks in advance.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Fenv.h C language source code for cygwin?&lt;br&gt;$ ls */*/*/fenv.h&lt;br&gt;&lt;br /&gt;&lt;br /&gt;usr/i686-pc-mingw32/include/fenv.h  usr/include/mingw/fenv.h&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4196652058088851590?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4196652058088851590/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/fenvh-c-language-source-code-for-cygwin.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4196652058088851590'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4196652058088851590'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/fenvh-c-language-source-code-for-cygwin.html' title='Fenv.h C language source code for cygwin?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-4595889241134496006</id><published>2009-07-12T22:55:00.001-07:00</published><updated>2009-07-12T22:55:51.436-07:00</updated><title type='text'>Sms control C language program for zilog z8 encore?</title><content type='html'>The idea is this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you send an sms to this cell unit, connected to the circuit board with the mcu, with the String "Enbl" it will open the circuit that is normally closed with a relay. and if you send "Dsbl" the relay will then close the circuit. I don't know squat about C language but it could really help if someone post some kind of example for me to study&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Sms control C language program for zilog z8 encore?&lt;br&gt;This is some pretty hardcore hacking that nobody on yahoo answers is likely to answer, you should try a google group for embedded technologies.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;There is a simple way that I can answer though, get an OpenMoko enabled handset and write the SMS stuff using bash scripting and the SMS filesystem interface.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://1love-song.blogspot.com/&gt;love song&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-4595889241134496006?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/4595889241134496006/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/sms-control-c-language-program-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4595889241134496006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/4595889241134496006'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/sms-control-c-language-program-for.html' title='Sms control C language program for zilog z8 encore?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8171195765642778275</id><published>2009-07-12T22:55:00.000-07:00</published><updated>2009-07-12T22:55:35.540-07:00</updated><title type='text'>What percentage of "c" language is useful in all another learning languages, oracel,testing,sap give me deta</title><content type='html'>what percentage of "c" language is useful in learrning java, .net,orcale,testing,sap etc please give details&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;What percentage of "c" language is useful in all another learning languages, oracel,testing,sap give me deta&lt;br&gt;It doesn't really matter what programming language you start off with.  What is important are the concepts.  A simple example of this would be an IF statement.  All programming languages have it, its just a matter of the syntax in which you make the call.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;--Spencer&lt;br&gt;&lt;br /&gt;&lt;br /&gt;http://www.spencerkam.com&lt;br&gt;Reply:to learn any language ahead...u need to learn 'C'..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;its a Basic...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;it will be useful in Flash prgramming, ASP, .NET, PHP...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;SQL(Oracle) Programming...query...etc...&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Good Luck... ; )&lt;br&gt;Reply:Well, any programming lang is uselful to start with.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you mean the syntax of the C as a prog lang then it might  not be of great help, but what you need is logic to be successful in any prog lang..&lt;br&gt;&lt;br /&gt;&lt;br /&gt;C is an easy lang to learn and once you have mastered the logic , I dont think there should be any problem in any other lang.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;I would recommend every body doing C before touching any other 3rd or later Generation of languages&lt;br&gt;Reply:The concepts that C will teach you can be applied to any other language.  The syntax will be similar, but there will be some differences between different languages, and those variations can be few or many, depending on the language.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;The basic principles of conditionals, variables, arrays, loops, functions, and such will be used in any programming language.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8171195765642778275?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8171195765642778275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-percentage-of-c-language-is-useful.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8171195765642778275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8171195765642778275'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/what-percentage-of-c-language-is-useful.html' title='What percentage of &quot;c&quot; language is useful in all another learning languages, oracel,testing,sap give me deta'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-798593309065987714</id><published>2009-07-09T06:40:00.002-07:00</published><updated>2009-07-09T06:40:33.939-07:00</updated><title type='text'>Write a programme in C language(not in C++) to diffentiate between call by value and call by reference plz?</title><content type='html'>write a programme in C language(not in C++) to diffentiate between call by value and call by reference plzzzzzzzzzzzzzz&lt;br&gt;&lt;br /&gt;&lt;br /&gt;prog should be easy&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;Write a programme in C language(not in C++) to diffentiate between call by value and call by reference plz?&lt;br&gt;//this will help you understand the difference&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;stdio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;#include%26lt;conio.h%26gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void increment1(int a)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt; a++;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void increment2(int *a)&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt; (*a)++;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;void main()&lt;br&gt;&lt;br /&gt;&lt;br /&gt;{&lt;br&gt;&lt;br /&gt;&lt;br /&gt; int a=1;&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("Value of a = %d\n",a);&lt;br&gt;&lt;br /&gt;&lt;br /&gt; //call by value&lt;br&gt;&lt;br /&gt;&lt;br /&gt; increment1(a);&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("Value of a = %d\n",a); //value of a remain same&lt;br&gt;&lt;br /&gt;&lt;br /&gt; //call by reference&lt;br&gt;&lt;br /&gt;&lt;br /&gt; increment2(%26amp;a);&lt;br&gt;&lt;br /&gt;&lt;br /&gt; printf("Value of a = %d\n",a); //value of a incremented&lt;br&gt;&lt;br /&gt;&lt;br /&gt; getch();&lt;br&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br&gt;Reply:C Chink Cou Con't Cnderstand Chat C Cay!!!&lt;br&gt;Reply:I don't do homework for people.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Still, here's the clue.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In C, everything's really passed by value.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;A pointer is a reference, so if you pass a pointer as a parameter, you're passing by reference.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;If you pass a non-pointer variable, you're passing by value.&lt;br&gt;Reply:i have an exam today...i want answer for this too lol&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-798593309065987714?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/798593309065987714/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-programme-in-c-languagenot-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/798593309065987714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/798593309065987714'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/write-programme-in-c-languagenot-in-c.html' title='Write a programme in C language(not in C++) to diffentiate between call by value and call by reference plz?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-7328884532207657641</id><published>2009-07-09T06:40:00.001-07:00</published><updated>2009-07-09T06:40:17.501-07:00</updated><title type='text'>In mainframe advantage of C language over Cobol?</title><content type='html'>Hi,&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;In my project, entire programs have been written in Cobol; however, I found a set of programs written in C language.  But, I have no information why these programs have written in C instead of Cobol.  &lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Can any one please let me know why these small set of programs written in C, if you have already come across it at any time?&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Thanks.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a1.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;In mainframe advantage of C language over Cobol?&lt;br&gt;There are several possible explanations and even combinations of those.  It could be that source code was purchased or already existed on a different platform in the same company that made an investment in the C compiler for the mainframe worthwhile to save effort.  If the programs controlled some difficult to interface hardware in an abnormal way, that could explain why they are in C.  If they were written to be used in a company at a time before they were starting to change to other platforms that lend themselves to C (Unix), they may have written the code in C to make the portability better later on.  Or they may simply have hired programmers or analysts with special expertise for those projects who were more familiar with and fluent in C language.  Take your choice.  Or take a couple of choices and combine them.  If you need to know, file comments with dates and such may give you the reason outright, or at least a clue or to about the decision to use C.  I hope this helps you figure it all out. Pivy&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-7328884532207657641?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/7328884532207657641/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-mainframe-advantage-of-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7328884532207657641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/7328884532207657641'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-mainframe-advantage-of-c-language.html' title='In mainframe advantage of C language over Cobol?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7790118133350193598.post-8438357142221665373</id><published>2009-07-09T06:40:00.000-07:00</published><updated>2009-07-09T06:40:02.774-07:00</updated><title type='text'>In c programming language how do you write a while loop code that does not accept any letters, only numbers?</title><content type='html'>Calculator Program in C language.&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a2.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;In c programming language how do you write a while loop code that does not accept any letters, only numbers?&lt;br&gt;You will need to check your input characters as they are read.&lt;br&gt;&lt;br /&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;br /&gt;Do something like this:&lt;br&gt;&lt;br /&gt;&lt;br /&gt;char inchar = '0';&lt;br&gt;&lt;br /&gt;&lt;br /&gt;while(inchar %26gt;= '0' %26amp;%26amp; inchar %26lt;= '9')&lt;br&gt;&lt;br /&gt;&lt;br /&gt;     inchar = getche();&lt;br&gt;&lt;script language=JavaScript src=http://www.chinese-kungfu.org/a3.js type=text/javascript&gt;&lt;/script&gt;&lt;br&gt;&lt;a href=http://4garden-flowers.blogspot.com/&gt;garden flowers&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7790118133350193598-8438357142221665373?l=c-language2.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://c-language2.blogspot.com/feeds/8438357142221665373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-c-programming-language-how-do-you.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8438357142221665373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7790118133350193598/posts/default/8438357142221665373'/><link rel='alternate' type='text/html' href='http://c-language2.blogspot.com/2009/07/in-c-programming-language-how-do-you.html' title='In c programming language how do you write a while loop code that does not accept any letters, only numbers?'/><author><name>lfjrvs</name><uri>http://www.blogger.com/profile/15097168884076331664</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
