Jump to content

Featured Replies

Posted
Im new to programming, and I dont know what language is best to start out with, anyone recommend one?

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.

  • 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..

  • 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.

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.

this is the key to your problem

 

std::string you = "gay";

std::cout << "You're " << you << std::endl;

  • 4 weeks later...
#include <stdio.h>
#include <conio.h>

main()
{
    char szStr[] = "gay";

    printf ( "You're %s.\n", szStr );

    getch();

    return 0;
}

program a;
{$APPTYPE CONSOLE}
begin
 Writeln('amfg, programming language discussions suck');
 Readln;
end.

Guest
This topic is now closed to further replies.