Free Trial

Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.


  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint
Share this Page URL
Help

Chapter 8. Reconstructing a Program with... > Reconstructing C/C++ Code: Part 3

8.4. Reconstructing C/C++ Code: Part 3

Next we combine more mixed statements into C/C++ language code:

int a, b;
int *pa, *pb;

pa = &a;
pb = &b;

*pa = 1;
*pb = 1;

ecx = *pb;
ecx = ecx + *pa;
*pb = ecx;               ; *pb = *pb + *pa;

ecx = *pb;
ecx = ecx * 2;           ; *pb = *pb * 2;
*pb = ecx;


  

You are currently reading a PREVIEW of this book.

                                                                                        

Get instant access to over
$1 million worth of books and videos.

  

Start a Free Trial