hey man.....assembly language is not different for c++...it is just that if you want to include assembly language code in c++.....you include it in a asm block like this.....
asm
{
//here goes the assembly code......
}
so learn c++ and assembly separatly and then use them in a single cpp file..........for more help go for following books on c++(they are on www.rapidshare.de...i hope u know hopw to use it)......
Bjarne Stroustrup C++
http://rapidshare.de/files/32953458/Bjarne_Stroustrup_-_The_C___Programming_Language__Third_Edition.rar
4.11 MB
ISBN for test your C by yashwant kanetkar 8170298016
http://rapidshare.de/files/26496128/BPB_Publications_-_Test_Your_C_Skills.rar.html
Kanetkar c notes
http://rapidshare.de/files/31512673/Kanetkar_c_notes.pdf
C Programming Reference Card
http://ugottodownload.blogspot.com/2006/09/c-programming-reference-card-excellent.html
C secrets
http://rapidshare.de/files/30721457/Expert_C_Programming__Deep_C_Secrets.rar
Passwrd: evilution
The_C_Programming_Language_2nd_Edition
http://rapidshare.de/files/32975778/The_C_Programming_Language_2nd_Edition.pdf
C Complete Reference
http://rapidshare.de/files/24128006/McGraw-Hill_-_C_-_The_Complete_Reference__4th_Ed.zip.html
4.83 MB
Programming in C Language: 3rd Edition
http://ugottodownload.blogspot.com/2006/09/programming-in-c-language-3rd-edition.htm
Data Structures & Algorithm Analysis In C Language
http://ugottodownload.blogspot.com/2006/09/data-structures-algorithm-analysis-in_14.html
The Standard C Programming Library
http://ugottodownload.blogspot.com/2006/09/standard-c-programming-library.html
2006-09-24 00:46:58
·
answer #1
·
answered by DeAd MaN 4
·
0⤊
0⤋
Computer programming is pretty complex so there are three ways to go about learning so much information.
1. Find someone who knows how to use c++ and ask them to teach you, If you dont have a friend who knows look around for a tutor (many university students are also part time tutors, so try your local campus)
2. Find a night course or collage that has courses in C++
3. (and this is the cheapest option unless you have a friend) Buy a good book, I can reccomend "Sams teach yourself c++ in 21 days" its pretty good, you can but it on amazon.com heres the website...
http://www.amazon.com/gp/explorer/0672327112/2/ref=pd_lpo_ase/102-9498371-6595314?
Good luck with the learning !
2006-09-24 00:23:31
·
answer #2
·
answered by psycgirl25 4
·
0⤊
0⤋
assembler language programming takes time to learn.
You need books about assembly language and compiler.
At the end you can use it in C++
If you are interested in assembler for more details, send me you e-mail
2006-09-24 00:25:39
·
answer #3
·
answered by iyiogrenci 6
·
0⤊
0⤋
This is a very simple C++ program that includes some assembly code. You can use it as a basis to develop more complex applications.
void _tmain(int , _TCHAR* argv[])
{
int myvar=1;
__asm
{
inc myvar //this assembly line performs myvar++
}
printf("%d",myvar);
}
2006-09-24 02:28:55
·
answer #4
·
answered by cd4017 4
·
0⤊
0⤋
Many books available on C++. I bought my set of books at car boot sale for about £10 for 12 books.
2006-09-24 00:18:50
·
answer #5
·
answered by cooperman 5
·
0⤊
1⤋
Maybe you should start by stepping back and learning the English language first.
2006-09-24 00:19:16
·
answer #6
·
answered by eastern_mountain_outdoors 4
·
0⤊
2⤋