Hi,
I am tracing this c program and I know nothing about this x_DUMP code. Can somebody explain to me ? Thanks.
[code=c]
/* header */
# include <stdlib.h>
# if x _DUMP
# include <stdio.h>
# endif
/* functions */
void function_name (int something)
{
# if x_DUMP
printf(" this is function a ");
fflush(stdout);
#endif
printf("somethi ng");
}
# if x_DUMP
void x_dump( )
{
printf("somethi ng");
printf(" something");
fflush(stdout);
}
# endif[/code]
I am tracing this c program and I know nothing about this x_DUMP code. Can somebody explain to me ? Thanks.
[code=c]
/* header */
# include <stdlib.h>
# if x _DUMP
# include <stdio.h>
# endif
/* functions */
void function_name (int something)
{
# if x_DUMP
printf(" this is function a ");
fflush(stdout);
#endif
printf("somethi ng");
}
# if x_DUMP
void x_dump( )
{
printf("somethi ng");
printf(" something");
fflush(stdout);
}
# endif[/code]
Comment