Click here to Skip to main content
15,891,687 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
For every code there are lines that must be before the code itself,
for example in c++
#include..
using namespace..
void main()
{
   // Code
}

Now I can't find those lines for ASM code.
Can someone post them here?

Thanks
Posted

 
Share this answer
 
Comments
Member 7966831 19-Oct-11 20:08pm    
It helped me, thanks
André Kraak 20-Oct-11 1:49am    
Your welcome.
Which lines are you referring to? If you mean these:
C++
#include..
using namespace..

you will be disappointed as they are merely directives and declarations which help the compiler to figure out how to generate the code of the program elsewhere.
 
Share this answer
 
Comments
Member 7966831 19-Oct-11 20:09pm    
I understood, thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900