What is the output of the below CSIM program?
#include
#include "csim.h"
void process1(void);
void sim(void)
{
int i;
create("sim");
printf("Begin at time = %f \n", clock);
process1();
for (i=0; i<10; i++)
{
hold(1.0);
printf("sim() at %f \n", clock);
}
}
void process1()
{
int i;
create("process1");
for (i=0; i<10; i++)
{
printf("process1() at %f \n", clock);
hold(3.0);
}
}
If the statement create(“process1”); is removed from the program, what will the output be?