Sunday, August 2, 2009

Algorithms and c++ programming help ?

Well, please tell me if anyone knows a tutor who could help me with C++ algorithms, I am in high school need help for an Olympiad. Books and links would be really appreciated, by books I mean, E-books pdf, or any references to online tutorials. A tutor residing in (NewDelhi, Noida) would be a real good help. Currently I am refering to 'How to solve it by RG Dromey'.

Algorithms and c++ programming help ?
Check it out whether this is wat u r searching for:


--http://www.cppreference.com/cppalgorithm...


--http://www.cs.sunysb.edu/~algorith/imple...


--http://www.codeguru.com/cpp/cpp/algorith...
Reply:Well, I don't know how advanced your C++ curriculum is. But, maybe check out www.cplusplus.com . Besides tutorials, they also have sample code.





And why New Delhi? I know the stereotype is that Indians are good programmers, but I'm sure there's plenty good programmers locally.

sympathy flowers

How Do I Learn The C Language?

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.

How Do I Learn The C Language?
http://www.programmingtutorials.com/cplu...





http://www.programmingtutorials.com/c.as...
Reply:take an online course;)
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
Reply:Buy the C programming book of McGraw-Hill publication,its gr8 dude u can be a master in C
Reply:Reading alot, or watching stuff on it. Then, from there after learning the syntax list, it's easy. Just apply what you know.
Reply:as one of our frenz said if ur entirely new to programming try go and books like


let us c by yashwant kanetkar --- a gr8 book


How retain the data in a variable in C programming( not C++) after closing the program???

Iam trying to make a information system using C, not C++ but i want to save the changes done when i open my program and close it and when i open again it does'nt go back to the original but the retains the changes done.


Meaning A was originally 1 but when i run the program i changed A into 3 and when i close the program and then open again i want A to be 3 not 1.


Can anyone help cause i cant seem to understand the tutorials in the internet.


tnx :)

How retain the data in a variable in C programming( not C++) after closing the program???
Store the data in a file. When the program starts up, read the values from the file. When the program ends, write the new values to the file.





Suppose you want variables a, b, and c... (double-check my syntax)








FILE *iniFile;





/* Open the file and read in the values */


if ( (iniFile = fopen("mydata.ini","r"))==NULL) {


printf("Unable to open file for read!\n");


exit 1;


}





/* Read in the values */


if ( fscanf(iniFile, "%d %d %d", %26amp;a, %26amp;b, %26amp;c) != 3 ) {


printf("Error - not enough values on ini file\n");


}


fclose();








/* Write out new values -


NOTE: this wipes out previous values */


if ( (iniFile = fopen("mydata.ini","w"))==NULL) {


printf("Unable to open file for write!\n");


exit 1;


}





/* Write out the values */


if ( ! fprintf(iniFile, "%d %d %d", %26amp;a, %26amp;b, %26amp;c) ) {


printf("Error - unable to write file\n");


}


fclose();
Reply:When you close the program just save any variable or change or whatever in an external file (such as a*.cfg file or what you like the most).


I want to Learn C programing?

Help me to get the list of all errors in C programming and how to rectify it. I need names of some books for the same too.





Iam using Turboo C as compiler





iam getting lot's of errors





How to debug I would like to Know very good free tutorials pls help me!!!!!!!!!

I want to Learn C programing?
any international edition is good. if u want to learn then practice with it. the more time u spend the more knowledge u gain....... if u stuck with some error. feel free to send it to me, i'll give it a try and let u know.





rajeshwarraja@yahoo.com
Reply:Um. I have learnt C, C++ and Java already. Please contact me at ramanathansp1992@yahoo.co.uk coz I wan't to tell personally.


Learning C++?

I know the basics, cout %26amp; cin, OOP, pointers, functions and a bunch of stuff, I know lots about programming in text based console apps.


I have bought 2 books, the first going over very basic, and the next a bit more advanced.





I want to be able to program with graphics! How do I do that!


Nothing will tell me! I don't wan to buy any more books, I'm pretty much broke, I'm using Dev-C++ as my compiler, as I can't afford a high quality one.


Someone name a website or place that offers free tutorials that teach you programing with graphics. I don't want something that just shows source code, that is dumb, because you don't know what It means, I want something that will show, and describe to me how to do. Thank you

Learning C++?
for games gamedev.net


but to learn graphics go to codeproject.com


u have to use MFC,WTL,ATL or similar library file provided by others to do graphics


the basic graphic can be done using win32
Reply:Asking for too much to be written here.. visit comp.lang.c++ newsgroup from Google groups. Their FAQ and old threads have answers for your questions. That was a short answer wasn't it? ;)





I hope you have already sen things like CUJ(out of publication now), Dr. Dobb's et al.
Reply:search devshed can't remember but think it's devshed.net, but it will have a list of languages on the left to choose from. also, devguru and search yahoo for free online books programming, should help you find a bunch of online texts for development.

bridal flowers

I satyed up all night to google, yahoo, msn and anything else some C programming courses?

I have many tutorials but I hate them so I want some clases that will take place during this summer in Las Vegas, NV! I hate tutorials because I can not understand anything from them! So some classes would be better for me!





I need this classes to be for C programming language (some C++ would be OK but I prefer normal C)





I do not care about the price! I only want it to be in Las Vegas and to be anytime from 10 AM to 6 PM!





I prefer these classes to start in june( arround 10th of june)








Thank You Very Much

I satyed up all night to google, yahoo, msn and anything else some C programming courses?
Learn C Programming from from the Expert !





This is Prince M.Premnath A top rated programming expert from www.allexperts.com , Ensure it by following the link given below


http://www.allexperts.com/ep/1587-74129/...





Im conducting online classes for programming , hope ill do the best for you,


This is my mail ID : princeatapi@yahoo.co.in


respond me if you wish





Thanks and regards!


Prince M. Premnath
Reply:Here is a jump start on your c programming. Use the free online videos at Berkeley. When you enroll in college you can use this to supplement your classes.


http://webcast.berkeley.edu/index.php





Below is a specific link to one of their many classes online.


C++ for beginners, now what?

I just finished a c++ for beginners book. I know the basics, can build some pretty nice console apps and stuff, but my question is; Where do i go from here? I cant seem to find anything that transistions into windows apps/games and things like that. It seems that all the books/tutorials are all either very beginner or advandced, I feel kinda stuck. Any advice would be greatly appreciated. Thanks.

C++ for beginners, now what?
Take a C++ course at a local community college. That's how I learned Java.





Once you're feeling up to it, search the internet for "Design Patterns". You'll find lots of references. Design Patterns are to Object Oriented programming what Data Structures are to Procedural programming.





If you can start to become familiar with Design Patterns, then you're C++ coding will become much better.





Good Luck.
Reply:There r lots of advanced topics..


Smart pointers, templates, COM/DCOM etc..





try VC++ or gcc(4 all platforms other than windows.)
Reply:Get the bloodshed dev-cpp system and download the SDL (graphic/sound/and more) libraries. There is lots of good stuff on the SDL site that you can learn from by example.





Hundreds of SDL-based games/apps/tools/demos are available there, some simple and some quite sophisticated.
Reply:Try to search the internet. There are many tutorials regarding C++, even more on building games.


C#/.NET to Java/J2EE developer? Where do I start?

I'm a ASP.NET developer coding in C# and am interested in getting started with Java and the J2EE platform. Where do I start? Is there a free SDK and framework that I can download and run like there is for .NET? Any good tutorials with examples? I'm looking for techniques and development styles that are new and are widely utilized in today's business.





Thanks!!

C#/.NET to Java/J2EE developer? Where do I start?
If you said that you wanted to move from VB.NET to Java, I would say it would be a bit of an effort. However from C# to Java, it is a lot more easier. You will be surprised how similar the syntax of the two languages are.





The sun website is a good place to start learning java. There are a lot of other websites that have good tutorials but it depends what you want to learn.....When you say java, it is pretty vast. There is a lot in java and it will depend on what you are trying to learn.





Example you mentioned you were coding in ASP. NET so I assume you are intrested in web side programming. Java has JSF, JSP, Strurts, Servlets etc. A lot of these are interlinked but like i said it all depends what you want to learn to program in.
Reply:hey have a look at www.sun.com


U will find all tutorials


See this site :


http://java.sun.com/docs/books/tutorial/


C++ prgramming question...?

k so i waswondering, first of all is C++ the prgram you use to make simple games? liek rpgs ns tuff. and does this look liek a god site to teach me how? http://lazyfoo.net/SDL_tutorials/index.p...

C++ prgramming question...?
Yes, C++ is used in the industry, but it is used for complex 3D games.





if you are interested in game programming, I suggest starting off making games like Pong





there's no way you could make a full RPG without at least 5 years programming experience





or, you could cheat and use RPG maker =]
Reply:The Programming language you use to make simple games is the programming language you're using. SDL looks more like C than C++. There is some overlap and especially because you do this sort of thing with a library like SDL which is not instrinsically part of the language. If you don't know either C or C++ then I have to say no. Find a more basic tutorial which uses iostream or stdio.h for text-based output, and once you understand program structure jump to SDL. Or allegro.
Reply:It is, though you must have a great amount of knowledge and experience to create complex games. You should go to your local library and pick up a C++ programming book, find one that is for beginners if you are just starting.

wedding reception flowers

C++ Library for HTTP access?

Hi, I'm a begginer at C++, and I was wondering if anybody knows of a good easy-to-use library to access a file on a server through http, kind of like how a browser does. Any help will be greatly appreciated, tkz in advance! Tutorials will also be good.

C++ Library for HTTP access?
Start here:


http://www.programmerworld.net/resources...





They aren't all networking, but there should be a few good ones.


Where can i download free books on programming on c?

i am learning programming in c and would want to know from which website i could download free tutorials for beginners.

Where can i download free books on programming on c?
http://www.iu.hio.no/~mark/CTutorial/CTu...





excellent tutorial that covers everything you need to get started.
Reply:You can also check free programming ebooks website like http://myitcareer.org/ .
Reply:You could try the public library. It is likely to have many programming books that are free.


I have to make a big decission! It is Microsoft C# or Linux C! I know just a little bit about c#!?

I know nothing about C!


In the same time I want to catch up with the latest stuff and go with C# but I also want to learn about C in Linux, sockets and a liitle bit of lower level like C(do not give me assembly)


I do not know wich one to start off with first and every single time I decide on something, I try and find tutorials, but I suddenly feel that want to go back to the other one! It is a weird feeling and I also think I got some mental problem ! Please help me with this and do not tell me to look on the other discovered questions!


Could I go with both at the same time since they have a similar syntax?? (not really similar but close)

I have to make a big decission! It is Microsoft C# or Linux C! I know just a little bit about c#!?
I vote for MS C#. I love their new Visual Studio.
Reply:Wow, you are really being pulled in 2 directions here. Coding C on Linux is about as far from C# as you can get. It will probably be in your benefit to learn C very well (especially pointers) and then move onto C++ before really understanding C#. C# may look incredibly simple, and it is, but internally it is very complicated. Fortunately, you rarely have to worry about this complications, but sometimes it will become important, and the average ignorant C# code won't know how or why something is performing as it is. Note that C# can run on Linux too (lookup Mono).
Reply:Learn C# simply because of money. C# programmers can easily make 100,000 a year with just 4 years experience. C programmers are a dime a dozen and average 60-70K a year. C# is quickly becoming the standard in most shops and people are needed. C is old and is not built well and will confuse you when you want to make the jump to C#. C# is highly object-oriented while C is more procedural. That's like asking - should I learn to use an abacus or a calculator... I'd choose calculator any day.
Reply:read these links hope thins help...start with ANSI C then go ahead with c++





happy coding :)





Cheerz, Steven
Reply:You know, if you get the VS C++ Express and VS C# from Microsoft, you can learn both, as far as sockets and networking, those API's are system dependent, basically, the way you make it in Linux is different to the way you do it in Windows, even if you are using plain C.





C# is a proprietary Microsoft language which gives access to the Microsoft .NET framework (basically a big API arranged by namespaces), all Networking API in Windows and Linux can be accessed using C++, all C functions can also be called by C++, only if you use Gnome GUI programming you will have to use C, but I am sure you can always link the libraries to C++.





Bottom line, learn basic C++, learn the basic algorithms as loops, if else, recursion, array and string manipulation, etc.


Once you master the basic algorithms, start learning learning the use of libraries or APIs.





If you understand the principles and logic of algorithms, you can apply the same logic to any language (C, C++, C#, Java, VB, etc), learning the syntax can be a few hours depending on how good and experienced you are.





The hardest part is learning the API, because you have to go through all the functions available and figure out what they do and how to use it, for example, Microsoft has the platform SDK for Windows Programming which is in C or C++, MFC is C++ Windows programming, COM is for Windows and its C++, VB has its own Windows API which are kind of similar to the Platform SDK and .NET, which shares it's namespace in all the .NET languages (C#, VB.NET, Managed C++ and J#)





If you want to take C#, you will still need to learn the logic and algorithms before using the Windows libraries to make GUIs, otherwise you will be a cookie cutter developer.





Go to microsoft.com and get the Visual Studio Express version, they are FREE and come with tutorials.
Reply:Just FYI, C# and C are nothing alike.
Reply:Learn C first. Some may argue "learn C# first, it's easier", but in reality C# is very similar to C++, which is based on C. If you want to be any kind of efficient programmer in C++ or C# you should learn C. Then learning C++ after that is a breeze, and then learn C#, which if you know C++ is really just a matter of slight syntax changes and learning all the .NET System namespace. Also, once you learn the .NET stuff, you give yourself a huge boost into other languages that use the .NET library, such as C++ in .NET, VB.NET, etc.


Does anybody know of any good, free sites that can help me learn C++?

I want to learn the programming language C++, but I can't find any *free* sites that have lessons/tutorials. Please help.

Does anybody know of any good, free sites that can help me learn C++?
log on these web pages:





http://www.click-now.net/ebooks.htm





http://www.thefreecountry.com/documentat...
Reply:To learn it from scratch I suggest get a book and read it. C++ is getting too old, it is better to start C# and download free Visual Studio Express from Microsoft. Also MS MSDN is a great place for learning new language as well.
Reply:free_ed.net
Reply:www.cplusplus.com/doc/tutorial/
Reply:I would learn C# instead. Many C++ programmers I know are being retrained in C# because it is the latest and greatest. You can start at LearnVisualStudio.NET and download Visual C# Express for free from microsoft.





http://msdn.microsoft.com/vstudio/expres...
Reply:Hi





Well there really are no free sites for it , but better yet , if you use limewire or emule just search for a string like visual C++ and that should get you a bunch of files and doc for learning C++

flowers gifts

What should I learn after I master C++?

I'm a computer engineering student and I'm still trying to master the basics of C++. I just started learning about classes and memory management and arrays. In my book those are the last few topics. There are further topics on online tutorials and such and I plan to move on to Java next.





After I master C++ classes, what is next?





How do you learn how to make GUI in C++?





My other question though is what computer languages should a computer engineer or possible software engineer definatly learn? What are the most popular languages?








should I learn other languages like:





HTML,PHP,Javascript, Perl, Python, Visual Basic, ASP.net, XML, SQL?





Should a computer engineer know all these?

What should I learn after I master C++?
I've been doing Software Engineering for twenty plus years. Here's what I think:


C++ may be the most complex language you'll learn. You will need to learn a lot of the supporting libraries as mentioned by OOP's. PERL, Python and PHP are scripting languages and you can learn them as you need them. I think Java is important to learn, it is a delightful and useful language. The syntax is similar to C++.


The web based languages (HTML, Javascript) are worth learning if you plan to do a lot of internet stuff.


XML is useful and easy. In many situations.


I have to say that once you have C++ under your belt other languages come pretty easy. They all have loops conditions and variables, many support object oriented programming. I have never learned PERL, Python or PHP to any degree, but can figure out how to use them when there is a particular need. I've used all three at one time or another.


Visual Basic is just a shell, so to speak, over the DotNet CLR. So, it is no more useful than Java#, C# or managed C++. And since you will know C++, C# and managed C++ are a matter of learning their DotNet quirks.


Mostly, as a software engineer, you will come to a job and have to learn the application and particular libraries the employer is interested in. So you may have to learn a new language on the fly. But you should understand basic data structures and algorithms. Also math through linear algebra is important. And most importantly, as a software engineer, you need to understand how to solve problems. Then languages are just tools to solve them.
Reply:Well, if you manage to learn C++ properly, you should learn the most useful libraries for it, as C++ is probably the most powerful language available. (Well maybe C is better for drivers..meh).


Here is a list:





Win32 API -Allows you to make GUI using C++ on Windows,


lets you handle processes, threads, user input, make video game cheats..loads of stuff


Winsock - Lets you make networked programs


Direct3D - Lets you make 3D programs.


Fmod - Sound library used by many professional game designers





Various other useful ones like zlib, libpng, etc..





Of course, this depends on what you want to do with your programming. I also suggest you learn Perl, as it's a good language with which to quickly develop small utilities and text handling / administration programs. If you get into web design, you should learn Flash, Javascript, SQL, and PHP.





I advice against learning Java unless you must, since it sucks. (C++ is wayy better, although not as portable.) A computer engineer should know C,MIPS, and x86 assembly. These are relatively low level and are what engineers often have to deal with. (The ones you listed are high level and are used mainly for Web development.) The most popular languages are C/C++, C#, and Java.





C# is also good for rapid development, but the user must have .net framework installed...so that might reduce the portability of your programs. I would suggest you learn C# instead of Java because it's portable on all machines with .net installed (Like java needs the Java virtual machine installed) but is much faster and simpler, but just as powerful. Good luck.





Note: Idk where you plan on learning your programming, but I'd like to let you know I have learned all of these except PHP and SQL through the sole use of Google.


Can I learn C++ in 5 days? and how?

i don't really know C programing, just the very basic. then can i learn C++?i have to learn it in 5 days by myself. so if you know any online tutorials or something what really can help me in this 5 days, please help!:) thanks.

Can I learn C++ in 5 days? and how?
Most of all modern/mildly modern progrmaming/scripting languages are about the same. Their syntax is just different.





If you have a good grasp on programming concepts and theoretical programming then 1, I'd like to applaud for your hard work and effort. And 2, say that since you know pascal then C++ should be pretty easy to learn.





The quickest way that I know is this site:


http://www.cprogramming.com/tutorial/les...





Just zoom on through there and if you have any questions


about C++ then feel free to E-mail me at





void_3e01@yahoo.com








- Hex
Reply:http://www.cplusplus.com/doc/tutorial/


http://newdata.box.sk/bx/c/


http://www.learncpp.com/


http://www.cyberdiem.com/vin/


also, google "learn C++" that's where I got these links.
Reply:Well, if you know the basic concepts like loops etc. it is easy enough. The actual syntactical part is easy enough. But you knowing C will help you. But, to actually master it, learning isn't enough. You have to practice. Want to pass a test, I hope you can. But you cannot master it in just 5 days.
Reply:It would be difficult but it is not impossible.I found one book quite well written and easy to understand without being verbose.I do not remember the book's name.But it is authored by Robert Lafore.
Reply:Learn it for what reason? To pass a class? Sure, no problem. To be proficient and do a paid job? No, not a chance.
Reply:you can lean it if you work day and night all the time with a good book or site. but even then you will know the bascis...to become a good programmer or at least a decent one you must go over all kinda problems and try to solve it yourself without guidance or books etc...and this needs time...so i suggest you a good site or bying a book and start studying

daylily

C++??????pls help?

Hello, I want to learn c++ at home in this holidays .so, it is useful to my B.tech. Anyone pls tell me where to downlload this


c++ software.I asked this question two times b4. All r giving the


website names. After entering those websites, there r so many names of compliers ,etc. which I don't know. I am confusing wht to download.Pls give me the direct download link and name of it and also pls give me the site where to download the tutorials of it.


thanks.

C++??????pls help?
this website has a tutorial...


http://www.cplusplus.com/doc/tutorial/


Suggest some good tutorials to get started with java.. i am good at c++..?

how good at C++ LOL just go to http://java.sun.com/docs/books/tutorial/

Suggest some good tutorials to get started with java.. i am good at c++..?
Sun has some Java tutorials that are good for people new to Java.





http://java.sun.com/learning/tutorial/in...


Programming C# by examples?

I want to learn to make desktop applications. Can anyone recommend a book or tutorials where I can learn from examples?


I don't want a book with C# syntax. I want one with practical examples on how to build GUI and add code to save and open data to a file or use a database.

Programming C# by examples?
http://www.about.com





and then go to the channels and computers and then look for programming








do i get 10 pts
Reply:I gave alexander good rating But I prefer TJ's answer Report It

Reply:i still got 10 pts so i dont care Report It

Reply:Erik Brown's book "Windows Forms in Action : Second Edition of Windows Forms Programming with C#" is excellent.





"The book is a tutorial, leading the reader through Windows application development using C# and Visual Studio .NET. It illustrates how the classes in the .NET Framework interact in a fully functional application."





The book takes you through the process of building a single, robust application.
Reply:there's these amazing tutorials that i learnt c# in. hope they help you!


Im a c/c++ user, and im stuck to basic programing, i know clases,reference,pointers,ADT'... etc. i cant apply 8

how can i apply it, i mean i cant apply it to make a game, a database, a keylogger, etc. I have no reference and i think im stuck to basic programming.i usually rely to online tutorials but i cant find advance and intermediate topics. I and started to learn Visual c++ but i really dont know how to make a game? where should i start? Does everyone experience this kind of transition from basic to intermediate? thanks a lot..... Ryuuzakiii -aspiring programmer-(-,-)

Im a c/c++ user, and im stuck to basic programing, i know clases,reference,pointers,ADT'... etc. i cant apply 8
To practice swimming, you shouldn't jump right away into the ocean, pal! Try practice in small pools first.





Your first problem is your "view". It is like you know what a riffle is good for, and you know the concept of firing a gun, but in practice, it looks like a normal stick or baton to you.





First try to write short pieces of programs. Oblige yourself to forget the conventional way of programming, and try hard to find the classes and objects related to your short problem. Do it over and over until you feel you cannot do without them. Then the great ideas would come to you by themselves!





Good luck
Reply:want some resources for game programming i have few articles and source code but only in c language i you want it then mail me with subject as "c game" to


firozahmed143@rediffmail.com
Reply:I've been programming for a few years, and I'll tell you right now -- starting a game is a bit more advanced than the beginner/intermediate border.





I'd love to help with whatever your problem may be, but I think you've had some trouble posting it -- I can't exactly say I know what it means to "apply 8". Sorry.

flamingo plant

Im a c/c++ user, and im stuck to basic programing, i know clases,reference,pointers,ADT'... etc. i cant apply 8

how can i apply it, i mean i cant apply it to make a game, a database, a keylogger, etc. I have no reference and i think im stuck to basic programming.i usually rely to online tutorials but i cant find advance and intermediate topics. I and started to learn Visual c++ but i really dont know how to make a game? where should i start? Does everyone experience this kind of transition from basic to intermediate? thanks a lot..... Ryuuzakiii -aspiring programmer-(-,-)

Im a c/c++ user, and im stuck to basic programing, i know clases,reference,pointers,ADT'... etc. i cant apply 8
here is a link where you will find C++ and visual C++ game programming resources which includes free tutorials, e-books, on-line training and many other resources.


And don't worry everyone experiences difficulties in starting.





Just follow the link and enjoy :


http://www.deitel.com/ResourceCenters/Pr...


Ebooks for c language?

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.

Ebooks for c language?
You can also check free programming ebooks website like http://myitcareer.org/ .
Reply:The C Book is online at: http://www.freebookzone.com/goto.php?bkc...


Learning GNU C: http://www.freebookzone.com/goto.php?bkc...





Your Public Library may have additional eBooks for temporary downloading.
Reply:ive never yet seen such a %26lt;a href="http://www.perlisbooks.com/vbks/fr...


"%26gt;FREE MEGA EBOOK DOWNLOAD%26lt;/a%26gt;
Reply:I enjoyed this one when I started





http://www.cplusplus.com/doc/tutorial/


How do you link the Directx SDK library to the Dev-C++ compiler?

How do you link the Directx SDK library to the Dev-C++ compiler, and is the Directx library compatiple with all directx tutorials on the net?

How do you link the Directx SDK library to the Dev-C++ compiler?
I don't use Dev-C++, but according to a tutorial, click on the tools menu and click "compiler options", then click the Directories tab. Add directories from the Microsoft Directx SDK to the correct items, such as the include files to the include item and library to the library item.


How do you link the Directx SDK library to the Dev-C++ compiler?

How do you link the Directx SDK library to the Dev-C++ compiler, and is the Directx library compatiple with all directx tutorials on the net?

How do you link the Directx SDK library to the Dev-C++ compiler?
Double post, go to:


http://answers.yahoo.com/question/index;...


Beginner C++ Help?

Hi,I'm new to C++. And I mean literally new, as in I just started yesterday. I've read a few tutorials and learned somethings but I still know basically nothing. I'm making some simple programs to practice and the current one is a random number generator. Here is the code.





#include %26lt;iostream%26gt;





using namespace std;





int main()





{





int a,b,c,d,e,f;





string g,h="a";





loop:





a = (rand()%10);





b = (rand()%10);





c = (rand()%10);





d = (rand()%10);





e = (rand()%10);





f = (rand()%10);





cout%26lt;%26lt;"\n";





cout %26lt;%26lt; a;





cout %26lt;%26lt; b;





cout %26lt;%26lt; c;





cout %26lt;%26lt; d;





cout %26lt;%26lt; e;





cout %26lt;%26lt; f;





cout%26lt;%26lt;"\n";





cout%26lt;%26lt;"\n";





cout%26lt;%26lt;"To create a new random number, press a and then enter.";





getline (cin,g);





if (g==h){





goto loop;





}





cin.get();





}

Beginner C++ Help?
As Ahmad said, you need to seed the PRNG. srand with time as an argument works well. But I have a few things to say about your code.





The first is your variable names. Please choose more meaningful variable names. You realize they can be more than one letter long right?





Do not use goto and labels. They have their use, but no beginner and most intermediates will encounter such a situation. There are flow control constructs, like for loops, while loops, and do while loops. Use them. Your code could be rewritten to use a do-while loop and two for loops.





There’s something called an array. You should learn it as soon as possible.
Reply:You need to seed the random number generator.





http://www.cprogramming.com/tutorial/ran...


How to dance easy hip hop moves or i want to learn how to c walk?

I want to learn how to c walk or any other cool hip hop moves , send me tutorials of links and very good specific ones and i mostly want to learn how to c walk and I've looked everywhere and if you know how can you tell me what moves you do first , second , third , fourth , like all that and specific on how to do it. Thanks a lot for reading this question and commenting :D

How to dance easy hip hop moves or i want to learn how to c walk?
the simplest way to learn how to cwalk is off tutorials off youtube. however, cwalking isnt about learning a ton of moves but its you making up your own. so most tutorials you find will teach you the basics with a few examples of variations and combos.





I suggest you start off with Kyren's tutorials on youtube. There is no specific order in learning how to cwalk, but most people learn the V, shuffle, and then heel toe.





also, feel free to join www.thecwalk.com, the biggest community for cwalking and where all the best walkers are.
Reply:the standard cwalk that we all talk about is 'clown walking' the dance, which was based off the crip's crip walk. Report It

Reply:Believe it or not but you can learn dance moves from Fit TV All Star Workout.
Reply:Do on search for some hip-hop dance classes in your area. We have a few of them around here and they are awesome.


C++ programming?

hi,


i have by now finished the basics of c++ programming like header files, functions, structs, pointers and many more....but i have only worked with #include%26lt;iostream.h%26gt; header file and wherever i search on the internet i only get tutorials for this header file... so can you send me any links to some tutorials whee i can go further in learning....and one more question can you give me a complete list of all the header files that all available in microsoft visual c++ 6.0 with their functions may not necessarily here but through a link as well,..Thank you

C++ programming?
Here is a list of header files :-





mcalc


abstarry


alloc


array


arrays


assert


assoc


bag


bags


bcd


bios


btree


checks


clsdefs


clstypes


collect


complex


conio


constrea


contain


ctype


dbllist


def


def2


deque


deques


dict


diction


dir


direct


directry


dirent


dlistimp


dos


errno


fcntl


figures


filedata


filter


float


fstream


generic


graphics


hashtbl


io


iomanip


ldate


limits


list


list2


listimp


locale


locking


ltime


malloc


math


mem


memmgr


memory


new


object


point


priortyq


process


queue


queues


resource


search


set


setjmp


sets


share


shddel


signal


sortable


sortarry


stack


stack2


stacks


stat


stdarg


stddef


stdio


stdiostr


stdlib


stdtempl


string


strstrea


tcalc


time


timeb


timer


types


utime


values


varargs


vectimp


vpoint


_defs


_null


iostream





Enough. For other details visit http://cplusplus.com/





Thank You





Senthil
Reply:http://www.cplusplus.com/


Or you could try searching in a help file that came along with your C++ compiler. Borland C++ has a built in help file for the C++ language.
Reply:For header files this is the site you may look for





http://www.cplusplus.com/ref/#libs





For tutorials in C++





http://www.cplusplus.com/doc/tutorial





i think his serves ur purpose.
Reply:wait i will search for u

deliver flowers

Where can i learn c# and visual C#?

i am a begginer in programming and have no knowledge in programming languages .i have tried many tutorials online also microsofts official videos and tutorials but all of them seem to be for some one who already has learnt c++ or c


if you know a bettr way then answer this question if you answer this question just for points ill delete it

Where can i learn c# and visual C#?
If you are a beginner programmer, I would not recommend any of the C family languaes (C, C++, C#). They are a little too advanced for you. Try learning HTML and javascript first, or Visual Basic before going to C#; this way, you'll have some programming knowledge before you start on the more complex programming languages.
Reply:Go to MSDN and get a copy of Visual C# express


http://msdn.microsoft.com/vstudio/expres...





Then go find a book, some of the Sam's "Teach yourself..." books are a good starting point.
Reply:MSDN at Microsoft.com has a lot of programming info on C# for all skill levels. The best place though would be to get a beginner's book for C#.
Reply:try this link





http://members.tripod.com/~johnt/c.html





just copy and paste this link.
Reply:Take class at the college.
Reply:Maybe this? http://www.cyberdiem.com/vin/learn.html


Sockets in c language?

This is my school assignment and I am NOT asking for the code but I would really appreciate if you people can tell me where can i find good tutorials/lessons regarding the following.





I have to write "an Internet page grabber program in C programming language. so if I specify a URL at command line, my C program connects and downloads a web-page."





I have already done it in JAVA, but it seems like that socket programming is a pain in the neck in C. Please dont send me the exact code, because I want to learn, just tell me the links for tutorials.





Thank you.

Sockets in c language?
I've the same problem with you when moving from Java socket to C socket. It's a bit of the pain, but check the below link, i think it's pretty good tutorial. And yes if you using Linux or Unix, man page is pretty helpful as well.
Reply:go ahead and learn about cscoket library


Is there any online tutorials or book out there for programming a psp with C/C++.?

I want to program a PSP really badly but I don't know where to go. Please don't tell me psp-hacks.com because I have been there and I got banned from the chatroom because I asked too much questions (wtf!). Also don't say psp-programming.com because they barely have any tutorials on psp programming. Also are there any books out there that teach you psp programming?

Is there any online tutorials or book out there for programming a psp with C/C++.?
http://ps2dev.org/psp


Is there any online tutorials or book out there for programming a psp with C/C++?

I want to program a PSP really badly but I don't know where to go. Please don't tell me psp-hacks.com because I have been there and I got banned from the chatroom because I asked too much questions (wtf!). Also don't say psp-programming.com because they barely have any tutorials on psp programming. Also are there any books out there that teach you psp programming?

Is there any online tutorials or book out there for programming a psp with C/C++?
Hacking the PSP (http://www.hackingpsp.com/), PS2Dev (http://www.ps2dev.org/) and QuickJump (http://www.qj.net/) all have information about developing PSP applications. In particular, look at the forums for each of those sites.





There is a version of CodeWarrior adapted for use with the PSP. You may want to look at that for your IDE, though there are other options, as well.





It doesn't look like there are any books about programming for the PSP, only hacking the system itself.





And it's not C/C++ but Adobe (http://www.adobe.com/devnet/devices/psp.... has information about developing Flash applications for PSP, as well.

floral bouquets

Patching jeans: need stitching tutorial for that... anyone help pls? :)?

So I need to patch a lot of jeans - a result of normal wear and tear - and I am urgently needing patch stitches because (sadly enough) I don't know how to sew in a decent matter... if anyone has a link on tutorials (with pictures would be great!!) or something I'd really appreciate it. C'mon ~ make my day! I feel like doing something productive today *hehe* THANKS!!!

Patching jeans: need stitching tutorial for that... anyone help pls? :)?
Take your most worn-out pair of jeans and use it for the patches. Pre-make your patches in the sizes you'll need, allowing about 5/8" overlap. In other words, for a frayed 1-1/2" hole, use a patch a little wider than 2-1/2" in diameter. Sew each patch (by hand, if necessary) beneath the hole so that the grain of the fabric runs the same way on the patch and the garment you're repairing. Use a running stitch about 1/4" from the edge of the patch, and make uniformly small stitches. Once the patch is applied, and working from the outer side of the garment, turn under the edges of the hole, tucking it under as you stitch around the opening. You'll be turning the garment fabric in and under and tacking it with a new round of stitches. Be sure you round off the edges of square or rectangular patches so they won't fold and look bulky beneath the repaired area.





So all you'll need is your jeans (one to be used for patches) a spool of denim-colored thread and a needle, of course. If you want to be whimsical about some of the patches, you can use colored prints instead.
Reply:wal-mart has a sewing beginner book,if that does'nt work, buy some iron on patches.
Reply:Go to any fabric store. They all carry iron-on patches. Cut them to fit, and iron. I would suggest putting them inside the jeans. Why not buy new ones?
Reply:I say patch 'em. I saved my fav levi's by stitching a small sunflower patch over the worn spot. I'm not a sewing expert, but here's what I did: I found the sunflower patch on an old jean jacket in my closet. I carefully snipped it off the jacket, paying close attention to how it was sewn on. Since we're dealing with denim, no surprise, patch was machine-sewn. No problem, I'll just plan on retouching the patch after a handful of wearings. Okay, pin the patch in place, thread your needle, knot your thread and tack it on using the stitch you know. Just keep it tight and even. Note that it will be difficult to pull the needle through some spots- like multiple layers of denim around a back pocket- so use thimble(s) or gardening gloves. Also, run your needle and thread through a bar of soap to make it easier to pull through. Martha Stewart probably has a proper tutorial on her site. I was just so excited to see that someone else was patching their jeans today--Sew Long from Mt. Spokane!


Is there any directx sdk available for Visual C 6.0 ?

i m looking for a directx sdk which contains some samples as well. for visual c 6.0, can u please refer some websites with tutorials for game development ? thanks

Is there any directx sdk available for Visual C 6.0 ?
goto this site http://msdn.microsoft.com/directx/sdk/





btw, sdk is not depend on visual C version


CMD, html, css, and c(++) learning?

CMD controls computer processes, but i don't know any good places to learn it. anyone know? also any good places for html, css, or c(++)? w3schools is great but i wish they had some tutorials in videos, so if they're in video format that would be great. thanks!

CMD, html, css, and c(++) learning?
Here are some good video tutorials for starting to learn C++:





http://xoax.net/


Help With Visual C# Code?

Does anyone know of a good web site or book for individuals learning how to program in Visual C# using the .NET framework? Specifically, I am looking for tutorials that explain classes, methods, and objects. I am a student with no formal programming experience and would greatly appreciate your help - thanks!!!

Help With Visual C# Code?
I also suggest using the code project.





In addition to using the examples on that site there's also a free development environment if it's any help to you.


First download the dot net sdk from Microsofts website and then the IDE from here - http://www.icsharpcode.net/OpenSource/SD...





I've been developing c# desktop apps with this IDE for a few years and I'm very happy with it. If you want some help I'll send you some starter project specs and review your work. Your call, just email me.
Reply:www.codeproject.com is great
Reply:here is a learning VEDIOS for C#, it treats you from begining to be expert.


ENJOY IT.


http://msdn.microsoft.com/vcsharp/progra...

dried flowers

C++ network programming?

ok so iv been learning c++ for a while now and i wanna start learning some network programming iv been looking arund the web a bit and im getting kind of confused with all the diffrent types there seam to be. So first of what is socket programming is it diffrent to network programming are there any other types and what are they all used for and secondly if any1 knows of some good online ebooks and tutorials on network programming/socket programming that use windows and c++ if u could give me a link to them id really appreciate it thanks

C++ network programming?
May you can contact a expert or you also get help %26amp; post your comment at website like


http://homework.feedmelink.com/...
Reply:this is a good place to start.
Reply:Sockets are network programming. Everything needs to go over sockets to get started. If your using a Windows environment, I used the Winsock MSDN reference pages to help, however it's also just as easy on Linux, where sockets are managed as simple file pointers using open() close() read() and write().
Reply:i found usefull ebook for you, download at http://totme.com/categories/ebooks/C_Net...


From Where I download Video Tutorials for various subject of computer science like C, C++, HTML ?

I don't know where you could get videos persay but you can find a lot of good information just on the internet.





www.w3schools.com provides an excellent html tutorial.


C and C++ are a little harder to find mostly because everyone has there own version of C++. (Mostly because everyone created there own libraries like Mircosoft did) which makes it harder to find specific information.





look up "thinking about C" in yahoo or google and there should be a site called that, that could help you.





www.krugle.com also allows you to search for code in various languages giving you resources to draw on.

From Where I download Video Tutorials for various subject of computer science like C, C++, HTML ?
U can refer to the following sites for it:


1-digg.com/videos/educational/20_Video...


2-www.daniweb.com/techtalkforums/threa...


3-videocast.nih.gov/PastEvents.asp?c=1...





or u can try at google videos or youtube.......


BEST OF LUCK!!!
Reply:you can get that from lynda.com


What program should i use with c# to make games like java,directx,etc.?

i've made my mind up im gonna use C# so dont put on here you should use c++ just tell me which ones better with C# Java,DirectX,etc. if theres any others and any tutorials if possible thanks ahead of time.

What program should i use with c# to make games like java,directx,etc.?
Try Microsoft XNA, I believe you can develop games in C#. Go to http://msdn2.microsoft.com/en-us/directx... and check it out.
Reply:You should probably look into exactly what c# and Java are, because that question doesnt make a lot of sense.


Programming serial uart in C?

Can someone direct me to any tutorials or source code for programming a serial port in C. Note NOT C++. I can find loads on C++, Turbo C and VB etc but nothing in C!!


Thanks

Programming serial uart in C?
A few links:


http://electrosofts.com/serial/


http://www.beyondlogic.org/serial/serial...


http://www.yov408.com/html/tutorials.php...


http://msdn2.microsoft.com/en-us/library...


http://www.velocityreviews.com/forums/t3...


http://cygwin.com/ml/cygwin/1999-08/msg0...





Two newsgroups that may help:


alt.comp.lang.learn.c-c++


comp.lang.c
Reply:It depends on your operating system. On Pre-Windows 2000 you can use straight C, but if you're in W2k or newer you will need to use a driver (or write your own with MS DDK)

gift baskets

How do I make a program in C++ using a resource file?

Im fairly new to C++ programming, that is, I am able to program console programs but thats as much as I know. I want to write a win32 app using a resource file. I want to try and make a simple calculator. I used ResEd to make a nice calculator skin, but that is as far as I can go at the moment. How can I use C++ to make a working calculator. I could use some good online tutorials or some personal help. Im also using Dev-C++.

How do I make a program in C++ using a resource file?
I use Dev-C++ and when I started to teach myself Win32 programming, I began with this tutorial:


http://www.winprog.org/tutorial/





Also helpful was a book I checked out of my local public library:


Windows Game Programming for Dummies


http://www.dummies.com/WileyCDA/DummiesT...





But seriously, that online tutorial is a very good place to start.


How to create GUI using C++?

I use Visual C++. I am a novice in C++. I can easily do procedural programming and use functions. I have not tried object oriented, but I am about to study object oriented programming. Is my knowledge enough to create a GUI? If yes, where can i get online tutorials? Do I need a specific version of Visual C++?

How to create GUI using C++?
Here's a video tutorial using GLUT.





http://xoax.net/comp/cpp/opengl/index.ph...





There are several different options, depending on the applications that you want to develop.





Here is a video tutorial on making a simple MFC application:





http://xoax.net/comp/cpp/mfc/Lesson1.php





To do MFC, you will need the Standard Edition or higher of Visual C++. Express Edition do not carry MFC.
Reply:You're probably going to want to learn openGL. openGL is a graphics library and can be used to create 3D graphics as can directX (openGL is easier).


Where can I go to learn to make a game in c++?

I want to know where i can learn tutorials for making games for free in the c++ language.


remember i choose best answers.

Where can I go to learn to make a game in c++?
gamedev.net , you may also contact a gaming expert at websites like http://askexpert.info/
Reply:If you have no programming experience at all, you are not going to start making games. It takes years to do this stuff. My answer would be to take a some courses. Or by a book and install visual studio as a compiler.
Reply:gamedev.net has many resources, and a forum dedicated to beginners. they are quite helpful.


Where can I go to learn to make a game in c++?

I want to know where i can learn tutorials for making games for free in the c++ language.


remember i choose best answers.

Where can I go to learn to make a game in c++?
http://www.gamedev.net





www.cppgames.com
Reply:May be you can contact a gaming expert. Check websites like http://oktutorial.com/

wedding

How the future wil be for C,C++,WINSOCK2,WIN32 for developers?

this is Kiran from india,iam engineering graduate streamed in Computersciences.


i would like to mould career through C++ programming,winsock,win32 API ,


i dont know java.


can you suggest how to go forward for WIN32 programming and where i can find the online tutorials exactly and how the future will be for C,C++,WINSOCK2,WIN32 API





i hope i will get the suggestions from you.

How the future wil be for C,C++,WINSOCK2,WIN32 for developers?
honestly, I don't have much experience in winsock2, winn32, etc., but I've studied VB, C++, Java and some other languages for 2 years. In US, I guess the most common languages these days are VB, Java, and actionscript. That doesn't mean the other languages are extinct though.





I have a friend working as software engineer, he said that most of the time they use Java. VB seems to advance real fast these days. So my suggestion is you learn VB or Java if possible. You should do research on what language best fit your career.


What is the best Microsoft Visual Basic 2005 tutorial that is free and available online?

I'm currently doing my internship and i need to brush up on my C#, so does anyone know where i can find free tutorials for Visual Studio 2005? ASP.NET 2.0 btw.. Cheers..

What is the best Microsoft Visual Basic 2005 tutorial that is free and available online?
i dunno about tutorials... i know of a few sites to get really good eBooks...


How to do Differentiation in C programming language ??

I am looking for some tool, library or tutorials that would help me do differentiation in C or any other programming language.

How to do Differentiation in C programming language ??
usually differentiation includes variables...





so, it needs computation in variables...(not calculation)





but c language is mainly calculation...(using values assigned to variables)...





it is an NP complete problem to create a program which computes differentiation or integration of inputs...


I wanna know somthing regarding inputs in a c++ program. (c details)?

how can i use a javascript page(form fillup option)


to take data into a c++ program?





like.. i wanna maintain a database on c++... i just wanted to know how can i get the input through a nice user friendly (javascript/html)page.. just like filling a form!





i hav'nt done a lot of javascript... but i know c++ very well n i'll just get the tutorials for javascript. So just tell me is it possible to save the input from a FORM on a different file (text/dat format) from where i cud take the information using file handling(c++)??

I wanna know somthing regarding inputs in a c++ program. (c details)?
I guess best option is put your program in the CGI-BIN dir in Apache and post the information to this CGI program (which you can write en C++). The drawback is you need to start apache to have this working, even if you have both programs on same machine.





Another option is write a plugin, but this is browser dependant. You'll need to write an activex control if using IExplorer or a XPCom object if using Mozilla Firefox. With both you can directly get information from the DOM of your web page (though the API is quite different between MS and Mozilla option).
Reply:this is not what i was actually looking for!


anyway thanks for writing! Report It

Reply:Its much easier to use a server based language like php. It is very hard to connect directly to C++. You would have to create a full system that parses the header files and can get post and get data from the javascript or use AJAX techniques but I STRONGYLY recommend you just get a book on php and mysql which are actually easier and faster then C++ in a web environment.

flowers on line

Any tutorials on how to do The O.C posters on photoshop pleas?

pleas tell me a site that teaches how to do the posters and the picturs from the mixes pleas...!!!

Any tutorials on how to do The O.C posters on photoshop pleas?
http://www.youtube.com/watch?v=RDPWJvJwA...





just apply it to the OC


Friday, July 31, 2009

Hi every o one learning c++ anyone got some help you know tutorials for begginers?

also howdo i wite a simple graphics porgram you know like paint only easier

Hi every o one learning c++ anyone got some help you know tutorials for begginers?
google it. We had to find out a bit about each of the languages our software development course can cover(we only do one throughly) and c++ was one so we hit google and its amazing how much things cann be simpliefed
Reply:If you are just starting to learn programming, there is no such thing as writing a simple graphics program, ya know, like paint.


W3schools has lots of tutorials and they are interactive. But I dont remember if C++ is there.


Does anyone have a free downlad link for a C++ Compiler and do you have any books to recommend for tutorials?

I'm looking to learn how to write in C++ programming language.

Does anyone have a free downlad link for a C++ Compiler and do you have any books to recommend for tutorials?
Tons of them.


http://www.programmersheaven.com/


http://www.cyberdiem.com/vin/tutorials.h...


http://www.faqs.org/docs/Linux-HOWTO/C++...


http://oopweb.com/CPP/Documents/CPPHOWTO...


http://s14.invisionfree.com/Ruby_R_US/ar...


Get Ruby.


http://www.ruby-lang.org/en/


It is thinking/human C


Two different HELLO WORLD programs in c++ what's the difference?

The code doesn't seem to display right in Yahoo Answers so I will just post the link to the site I asked this question on. The link takes you directly to the comment I made, which is by the username Wesley. (Random name I thought of)





http://www.learncpp.com/cpp-tutorial/06-...





You can respond to the comment on the site or directly here in Yahoo Answers.





Reason for asking:





The C++ book I ended up buying shows the code like that and also other codes. Instead of what I'm used to.. cout %26lt;%26lt; "Hello world"





it's some other ****.

Two different HELLO WORLD programs in c++ what's the difference?
The true beauty of computer programming is that there are many ways of providing a valid solution. The difference you are seeing is with the standard namespace.





Namespaces allow you to give a "possession" to written code. For instance, if you write a function and Chuck Norris writes a function, you can each put it in your own namespace. Say if Norris wants to use your function, he will include your namespace, so when he's using it, he will know to whom the code belongs. It is used often in work environments.





In C++, you can use the standard namespace by writing the statement





using namespace std;





or you can use std:: with each statement that is part of the namespace. As you will see in programming with the standard namespace, it is good practice to use the single line above your main program. Try out each way and get accustomed to different code, because as you will see, everyone writes their code differently.
Reply:if you pick the "namespace std" then you don't put std in it.





cout %26lt;%26lt; "Hello World!n"; //don't put std if you use namespace std (that is standard namespace.)





Howerver if you not pick a "namespace std" then put std in it. such as:





std::cout %26lt;%26lt; "Hello World!n"; // you must put std if don't pick namespace std;
Reply:Many functions and objects in C++ are standard and are contained in the standard library. Neither example is wrong. To help clarify your confusion, you should look up namespaces and the using statement, as well as the scope resolution operator ::. This is probably beyond your understanding, but cout is an ostream object. At this point, don't be too concerned about that, but think of it like a variable that is declared. Now, say by accident you made a variable called cout (eg. int cout;). How would the compiler know which cout that you are referring to? Well, through the use of namespaces, one can put all their created objects and variables in a namespace. cout happens to reside in a namespace called 'std', which is short for standard. 'endl' is also in there. The proper way to use a namespace is to put the namespace, followed by the scope resolution operator ::, then the name of the object (eg. std::cout, std::cin, std::endl). However, this can beome cumbersome in a large program. The way to save some typing is with the using statement. There are a few ways to use this statement. One can use it locally in a function or globally. Many people will use the std namespace globally, so at the top of their program after the includes, you will see " using namespace std;" This means anything in that namespace, you will not need to put std:: infront of it, though you still can.


So you can do helloworld either way:


using namespace std;


int main()


{


cout %26lt;%26lt; "Hello World!" %26lt;%26lt; endl;


// you can still even do std::cout with


// the using namespace std; statement


return 0;


}





or


int main()


{


std::cout %26lt;%26lt; "Hello World!" %26lt;%26lt; std::endl;


return 0;


}

florist shop

I am a beginner who has the basic nack of programming in C,I want to learn Adobe CS 3 to build websites ??

I want to build a highly interactive website , and I searched for the Proffessional web building tools on the net and came across Adobe Creative Suite 3 Web Premium, but the problem is I just have a little knowledge on web building and a little programming experience in C and Java (Core) .So I wish to know that where would I find a good from scratch tutorial , that would teach me using the above product preferably a Video tutorial, also tell me that is it possible for me to learn it or I would have to learn other things first in order to learn the adobe CS3 ???


Thankyou !!!!!

I am a beginner who has the basic nack of programming in C,I want to learn Adobe CS 3 to build websites ??
First thing Adobe CS3 is not web development program its an image manipulation s/w and I'll be extremely useful while development. Second U've to learn web languages to make website u want. These are HTML, ASP, DHTML, CSS, "JAVASCRIPT", XML, AJAX[JS + XML]. Flash, Photoshop.





C has no use here, but y! JAVA is good choice, I'll be helpful in creating Java Applet applications.





First go for Photoshop play with tools and filters here, don't try to create anything... i mean to say JUST Play n enjoy painting.. After become familier with Some of tools, start using extra features.


Tip:: Java has a hard competitor Adobe Flash. This s/w is miracle and changed many websites future. Java respond some slowly 'coz of its well known BEST Feature which u hear everytime.... Plateform... :)





Go for Languages i told u above, then Photoshop and Flash.. And and Learn JScript as much u can. It's the only language u 'll use to build Interactive website [except if u r not using Flash].





Here is one s/w also Adobe Dreamweaver, specially for website developemnt, which is for those who don't know or don't want to learn languages. ;)





http://www.w3schools.com


Gud Luck n


Have a nice Coding. :)
Reply:Hello pankitdhawan,





You mean Adobe DreamWeaver. You don't really need to get the whole suite of CS3 programs. Adobe publishes "Classroom in a Book" for DreamWeaver, that could be of great help to you. Start there.





Best of luck to you.





--Rick


Can anyone with programming, specifically C++, experience help me? (little needed) What's wrong in this script

http://i218.photobucket.com/albums/cc99/...





Using Dev-C++





I switched to system pause again, though that's not the problem. Please answer here or email me to help me. The tutorial I used - http://www.youtube.com/watch?v=nziy2_U5J...





My Script:





#include%26lt;iostream%26gt;


using namespace std;





int main(void)


(





double dnumber1 = 0.0;


double dnumber2 = 0.0;


double dnumber3 = 0.0;


double daverage = 0.0;





cout %26lt;%26lt; "please enter 3 numbers... " %26lt;%26lt; endl;





cin %26gt;%26gt; dnumber1;


cin %26gt;%26gt; dnumber2;


cin %26gt;%26gt; dnumber3;





daverage= (dnumber1 + dnumber2 + dnumber3) / 3;





cout %26lt;%26lt; "The average of the numbers are... " %26lt;%26lt; daverage %26lt;%26lt;endl %26lt;%26lt; endl;





system("pause");


return 0;





)

Can anyone with programming, specifically C++, experience help me? (little needed) What's wrong in this script
int main(void)


( %26lt;===== problem





That parenthesis needs to be changed to a "{" instead


....called a "left curly brace" .... it is next to the "P" key





Change the parenthesis at the bottom of your code too.


Learning C#?

Hi! everybody,


I am new to programming and need to learn C#. I want to be able to program using C#. Can any body provide me with any tutorials, links names of books to be able to start with C#.


Thx

Learning C#?
i started learning C# through this web site:





http://functionx.com/csharp/index.htm





it has real-application examples too...





you may also want to purchase the book C# Complete
Reply:Visual C# 2005 Step by Step - Microsoft Press





I found it very good for beginners.


Learning C#?

Hi! everybody,


I am new to programming and need to learn C#. I want to be able to program using C#. Can any body provide me with any tutorials, links names of books to be able to start with C#.


Thx

Learning C#?
C Programming for DUMMIES


C++ for DUMMIES
Reply:If you are new to programming, then first go and learn c, c++ which would be very much helpful in understanding the basics.... rest is your choice...








search out at google.com for c# tutorials and you will find millions of stuffs....

sympathy flowers

How toy run NS2,C++ and TCL language?

hi,


how can i run the defult example source code such as AODV routhing protocol in NS2,i am very new in NS2,i try to use tutorial website,but there is no mention about how to run the NS2 defults??


..one more quesiton is if i modify some sourcode do i need to modify C++ source code plus TCL(or even OTCL) or just one of them is enough??


thank you,


please let me know your email address or next contact.


thank you in advacne


regards

How toy run NS2,C++ and TCL language?
I don't think that c++ can be modified


I'm looking for information on analyzing a/c compressors for semi's trucks and or large engines.?

Analyzing as far as failures drivers have on the road with a/c clutch and compressor combos.


If anyone has info as far as industry trades,books,tutorial dvd,weblinks,schools that could help me and or correspond emails with me it would be greatly appreciated.

I'm looking for information on analyzing a/c compressors for semi's trucks and or large engines.?
Do a web search for "TMC" or The Maintenance Council. This is an arm of the American Trucking Association. They are the ones who do the research and recommend standard practices for maintenance and repairs.
Reply:If there is a failure with a compressor, there is not much to diagnose, replace it and be sure of correct amount of oil and correct pressures.Also if a compressor fails, the condensor must be flushed and replace the reciever/drier. I'm not sure if you can get the brand of compressor and go to a web site that will help you. Automotive and tractor and semi-tractors have the same A/C system. They only have more or less freon in them.
Reply:The A/C compressors on big trucks will soon be a thing of the past they are working on a new system that info can`t be revealed due out in a few years. compressors will be a thing of the past


What should i do next in c++??? + MATLAB software.?

I have taken only one course of c++ at college (engineering). We learned about: scan, print,loops, conditions,functions, macros,recursive functions,switch functions,pointers, 1d %26amp; 2d arrays,structures,a very short lecture about strings . Now , at summer time, i want to learn additional things about c++. Can anybody tell me what to do? please give me the link to it. consider that i am interested in topics involving numbers and calculations and not words and characters.


An additional question: I have found a tutorial of MATLAB linked to wikipedia, but i don't know where to get a free download to a matlab software.

What should i do next in c++??? + MATLAB software.?
Writing games is a very good option you can consider if you think you can do well in math.You can start with Mesa GL which can give you even more depth into C and c++ including callbacks,line drawing algorithms, and you can graduate to splines and other more complex algorithms.Finally you would have done enough to create a game ;)


You can try hacking with the kernel and device drivers on a linux box to get a better understanding of things which make linux click ;).Most of the linux kernel is written in C and C++.


AS for your information Matlab isnt free.You will have to pay a huge sum to get it.
Reply:dfghgetggeg
Reply:so far you've learned the C heritage of C++. The next language features would be classes, object oriented programming (OOP), and then templates. You find a lot of information and tutorials on the web.





my personal opinion, though: learning this doesn't lead to anything, unless you actually USE it. So think of some nice programs and implement them in C++. That way, it's more fun and you learn faster.
Reply:if you are really a programming enthusiast and you are that good, then you can try studying about database applications or try to study directX so you can start to create games with you would be applying math and complex calculations as you go on.


What's wrong with this C++ program?

I'm simply trying to start learning C++, and this hello world thing isn't working. What's wrong with the code? This tutorial says I'm doing it right, but it keeps telling me line 5 is wrong.





#include %26lt;iostream.h%26gt;





int main()


{


cout %26lt;%26lt; "Hello World!\n";


return 0;


}

What's wrong with this C++ program?
Make the cout line the following:


std::cout %26lt;%26lt; "Hello World!" %26lt;%26lt; std::endl;
Reply:you forgot to add the line : using namespace std;


under the include directive


this lets the compiler know what cout means
Reply:If you are using Visual C++ compiler, then try


#include "iostream.h"

bridal flowers

Programming Small DLL's in C++?

Hello, I want to learn to program small DLL's in C++, so..... I can slowly move up to bigger ones. Does anyone know a good web tutorial or book to learn to program DLL's.





- Cheers, Daniel

Programming Small DLL's in C++?
I have listed several websites below that can help you write your very own DLL in C++. They are all over the web but here is a few to get you started.





Enjoy!


Using regular expressions in C++?

If you have a string of text





(for example, "1234 quick 1234 brown 1234 fox")





and you wanted to use a regular expression to identify any words in that string of text, what is the c++ code that would do it?





Note: A word is defined as any sequence of letters that is not interrupted by a space.





I could really use an example of code.





What #include statements would I need? Is there a way to do it without including regex? Where do I get regex (if I try to include it now, my compiler gives me an error, so I assume I need to get it from somewhere)?





Please note, I don't need a tutorial on regular expressions. I understand regular expressions well enough as it is, I just need to know how to use them in C++.

Using regular expressions in C++?
well... one way would be to search through the string until you found a space, or CR/LF.





Im not sure what you want to do when you find them but something like this will count them:





char mystring[] = "1234 quick 1234 brown 1234 fox";


int count, words = 0, spaces = 0, crlf = 0;


BOOL wordsstart = 1;





for (count = 0; count %26lt; sizeof(mystring); count++)


{


if (mystring[count] == 0x20) //space


{


spaces++;


wordstart = 1;


}


else if (mystring[count] == 0x0a || mystring[count] == 0x0d) //carriage return or line feed


{


crlf++;


wordstart = 1;


}


else if (wordstart %26amp;%26amp; ((mystring[count] %26gt;= 'a' %26amp;%26amp; mystring[count] %26lt;= 'z') || (mystring[count] %26gt;= 'A' %26amp;%26amp; mystring[count] %26lt;= 'Z')))


{


words++;


wordstart = 0;


}


}





its just off the top of my head, but it should work
Reply:google up pcre





http://www.pcre.org/!


Visual C# Programming Project?

I am in a computing class in my school that allowed us to learn what ever we wanted, so long as we were learning at a decent pace and the instructer knew what we were doing.


Anyways, I chose to teach myself Visual C# and I learned alot of the basics in coding, as well as creating forms.





After 9 weeks though we have to submit a project review thing that shows what we have done, and I want to code something that can demonstrate what I have learned, but cant come up with any cool ideas.





Anyone know of something I could do, even if its abit harder if you know of a tutorial or something that makes a cool program, or even a full project already done that allows you to edit it and customize it ect.

Visual C# Programming Project?
Well the good way to gain brownie points and actually do something that you can write on your resume is work on an open source project either fixing code or adding features. Unfortunately MS is not very friendly with Open source so I really dont know any projects in c#. Try doing something web related like a online diet diary or fitness tracker etc. The problem with web apps is that if you do not know what you are doing you can make your code insecure and get hacked.


How do I use C++?

I have never donw any programming in my life and was recommended to start with C/C++. I have no idea how to use it and I also need to know what I need to get to program on. I also need to know how to get my hands on whatever I need and how to get a decent tutorial so I can learn easily.

How do I use C++?
Go to book store and buy "Beginning programming for dummies", not kidding, this was my first book, and now I am a certified programmer. Don't start with C/C++.
Reply:I think you shouldn't use C++. VB.Net is a great beginner language (I started with it and in less than a year I moved on to C# and I have to say I'm pretty good) and you can download it for free. C++ gets mind boggling. If you insist on C++ then go to the bookstore and find some book entitled "Beginning C++" or something like that and read every page. You will need an IDE, I like Dev C++ because it's pretty good and it's free. Good luck.
Reply:If you've never done any programming C++ is not the place to start. I would recommend a scripting language like perl or python, which are free and you can download to any computer - mac, linux or windows. There are some basics you need to understand and any easy language will help you as much as any.


Here are the very basics:


variables


arithmetics


boolean (true/false) logic


conditionals (if then else clauses)


loops (for counting and iterating)


input from keyboard and output to screen





once you are comfortable with these then you can move on.


Typically every one starts out creating a program that just outputs "Hello World!" to the screen. Once you've done that you're ready for trying out loops, conditionals, arithmetic etc. Then download other peoples samples and try to figure them out and modify them.





I happen to like python because it starts easy you can use any text editor to creat your first program. And plenty of online samples and documentation to get you going
Reply:You will need a compiler (to turn your code into something the computer can run). Compilers usually come with a development environment, which is where you do your coding. I would recomend either dev C++ or microsoft visual C++ depending on what you want to do with it and why you are learning it. Download links listed below.





As for learning the language, there are plenty of good resources on the internet, however I would recomend buying a book or two, especially if you are new to programming

wedding reception flowers

Help with dev c++ compiler?

I just downloaded the dev c++ compiler, I tried writing similar to the way I do in dark basic, needless to say. EPIC FAIL. I tried googling a tutorial, I copied one of their programs to see if I could manipulate it, but the code didn't even work. (I triple checked, it was exact when I tried to run but it kept saying the program had to be compiled first, even though I tried compiling it about 6 times.) Some hints for a beginner dev c++ user would be appriciated.

Help with dev c++ compiler?
I dumped Windows for Linux years ago (completed the transition in '05). I use GCC but I don't use any IDEs (one reason I jumped). Nevertheless I've searched for a couple of tutorials for you (Incidently, before you try running something you go to Execute-%26gt;Compile on the menu or hit Ctl-F9).





Actually, everyone dumps you back to the same place: Dev C++ tutorial for CS 161 Students. I remember it as a good compiler (It's GCC in disguise after all). Try to get over your natural frustration.
Reply:What error messages was the compiler giving you?





Also, I took a quick look at SharpDevelop program that shickity recommended. It is C# and .Net IDE. Unless it has a plugin to handle standard C++, it will not help someone try to write C++.
Reply:I would switch to SharpDevelop. Similar syntax, and VISUAL design. Drag-and-drop GUI for most buttons, text boxes, etc. :P


C++ Beginner! Just a tiny question!?

ok, you experienced programmers... dont laugh at me! my programing experence stopped when my commodore 64 broke! I have chose to take this last week before christmas and teach myself as much about c++ as possible. Today is my first day and I am stumped on a point in chapter 3 of my book dealing with loops.I understand the loops but i am just experimenting and trying to make a program different than the tutorial. All I want to do is output 2 variables on the same line.


cout %26lt;%26lt;first variable%26lt;%26lt; %26lt;%26lt;then the second variable%26lt;%26lt;;


get my point?


Also id like to know how to do this..


cout %26lt;%26lt;"some text"%26lt;%26lt;first variable%26lt;%26lt; %26lt;%26lt;"some text"%26lt;%26lt; %26lt;%26lt;then the second variable%26lt;%26lt;"some text";


here is my code


#include %26lt;iostream%26gt;





using namespace std;





int main()





{


int y=0;





for (int x=1;x%26lt;4097;x=x*2) {


y=y++;


cout%26lt;%26lt;y%26lt;%26lt; %26lt;%26lt;x%26lt;%26lt;endl; //%26lt;----- Problem Line!


}


cin.get();


return 1;


}





/* Output sould look like this


1 1


2 2


3 4


4 8


5 16


etc...*/





Any advice appreciated! Thanks

C++ Beginner! Just a tiny question!?
There should only be one %26lt;%26lt;. You put 2 that causes an error.


If you want to add text its the same as what you did above. Like this: cout %26lt;%26lt; "text" %26lt;%26lt; x %26lt;%26lt; endl;


Just enclose the text in double quotation marks and they will display as text.


Note: endl is end line or new line equivalent to \n in C.


use return 0 to notify the OS that the program is successfully executed. Usually the compiler will return 0 automatically when it reaches the closing bracket of main. Return 1 is used to return the number 1 to the operating system so it is not necessary and useless.
Reply:cout %26lt;%26lt; y %26lt;%26lt; x %26lt;%26lt; endl.





You got too many %26lt;%26lt;'s
Reply:int main()





you defined your main program to return an int


value, that is why your compiler is "complaining".. ^^





i don't know if it you change it to "void main()",


and delete the "return 1;" will work..


btw, im using code::blocks. it's free and more


compliant to standard C/C++, i guess.. ^_^v





btw, you should not be using "return 1;"..


it should be "return 0;", coz any number


returned by a console program to the os %26gt; 0


is interpreted(by the OS) as error value..





peace out.. ^_^v