mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
Learned more about gdb's dprintf. Made some changes.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
int main (int argc, char** argv) {
|
||||
|
||||
int count = 10;
|
||||
int nfact = 1;
|
||||
int n;
|
||||
|
||||
// Add the 'dprintf' function to the program's symbol
|
||||
// table. So we can use it for gdb's 'dprintf' breakpoints.
|
||||
dprintf(1, " C++ loop\n");
|
||||
|
||||
for (n=1; n<=count; n++) {
|
||||
nfact = nfact * n;
|
||||
// printing the value of n and its factorial
|
||||
std::cout << std::setw(12) << n << std::setw(14) << nfact << std::endl;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user