Profile one of your recently written C/C++ programs. Write down all the commands that you used to accomplish this task.

What will be an ideal response?


```

/**

*The program that is being profiled in question no 5*

**/

#define SIZE 512

int i;

int j=SIZE;

static char *greetings="Hello, world!
";

void printout(char *a)

{

printf(a);

}

void foobar();

int main(void)

{

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

foobar();

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

printout("
helloooooooooo
");

exit(0);

}



void foobar(void)

{

static int i;

sta

Computer Science & Information Technology

You might also like to view...

On the Facebook Timeline, the ________ displays information about you that you've supplied to Facebook

A) far right side of the page B) right column C) left column D) far left side of the page

Computer Science & Information Technology

To simultaneously view two pages of a multi-page document:

A) click the File tab, click Print, and then click Zoom. B) click the View tab and click Multiple Pages. C) drag the Zoom slider all the way to the right. D) click the View tab and click Zoom In twice.

Computer Science & Information Technology

Finds the radius and height of a 2 liter can that produces the minimum surface area using Newton's method to approximate a zero of dA/dr

What will be an ideal response?

Computer Science & Information Technology

What are a digital signature and a digital certificate? If someone removes the Marked as Final status of a file, what happens to the digital signature?

What will be an ideal response?

Computer Science & Information Technology