Why does that first error not supprise me. :eek: The so-called code you posted in red is not code at all. I have no idea what it is. You can't just type in some crap into the program and expect the compiler to understand it.
The only valid error is the first one -- just ignore the others. Fix the first error and the others will go away.
Ancient Dragon
Retired & Loving It
30,050 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
>>These lines r from an .asm file.
what makes you think you can compile a file written in assembly language with a c compiler? It will never happen and you are just wasting your time trying to make it compile. There are lots of tutorials and books about how to write c programs, I suggest you start reading them.
>>It is also giving the error unable to start .exe of that application n System cannot find the file specified. Why I am getting this error
because your compiler did not create the .exe file -- you have to fixe all the compiler errors first. There is no point in creating an executable file if it does not contain all the code you were supposed to write.
Ancient Dragon
Retired & Loving It
30,050 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343