Hi to everyone
I have a source code(with solution file).I compiled it and run it works fine.But i want to know the in and out of the source code.I tried to change some code But no changes in compilation and run time.All codes written inside one namespace.If i made any changes in main function if reflects but not changes not affect inside namespace.Please Help Me Thanks In Advance.I am using visual studio 2005.
To understand some of the code, you need to know what everything is going to do. Many a time have I tried to teach someone and I would get angry at them because they would place something in the code they didn't understand and was entirely misused. If you add a getchar(); at the end of your console application, you need to expect it to stop and ask for a character before the application ends. If not, then either the file wasn't recompiled or you did a dunce move and your just not noticing. When you get more experienced you will start understanding what each error means without having to look them up on MSDN or GCC's manual.
My problem is this
I tried to change some code But no changes in compilation and run time(if i delete some thing also not get any error).All codes written inside one namespace.Please help me
are you saying that you change the code but it stays the same as it was before you changed it because if that is the case then a similar older program with the same name could be running instead of the updated version. that is what happened to me when I was trying to run my program. it got tangled up with my other programs. delete the old programs, but keep the new one and it should work out.