Posted July 5, 200717 yr Im new to programming, and I dont know what language is best to start out with, anyone recommend one?
July 5, 200717 yr Well, for HTML and PHP start at http://www.w3schools.com, this will get you started, each section is pretty much a summary, afterwards you gotta google. When you're up to teh hard stuff, hard copy books are always better than E-books and tutorials, I'm reading "Sam's teach yourself C++ in 21 days" atm, it's good.
July 5, 200717 yr Author So after i read HTML On w3schools i should go directly to php read them, then go to google? or HTML - w3schools, google HTML learn more. than php - w3schools, google it.. then the hard stuff..
July 5, 200717 yr Author Becuase im reading through the HTML Basics pretty fast and its not hard to understand. so maybe some you could post some html things i should read after the html basics/advanced on w3schools.
July 6, 200717 yr Start with c++ I personaly went in the below order c ->asm -> vb -> java- > html -> c++ If i could do it all over again I would do this C++ -> asm. If you can't learn basic c++, you are not smart enough to programme. There are plenty of tutorial on the net..........go find them and print them off.
July 9, 200717 yr this is the key to your problem std::string you = "gay"; std::cout << "You're " << you << std::endl;
August 5, 200717 yr using namespace std; if you arent a sucker p.s. you also have to #include <string>
August 5, 200717 yr #include <stdio.h> #include <conio.h> main() { char szStr[] = "gay"; printf ( "You're %s.\n", szStr ); getch(); return 0; }
August 7, 200717 yr program a; {$APPTYPE CONSOLE} begin Writeln('amfg, programming language discussions suck'); Readln; end.