9 lines
88 B
C
9 lines
88 B
C
#include <string.h>
|
|
|
|
void main()
|
|
{
|
|
char buffer[80];
|
|
|
|
bzero( buffer, 80 );
|
|
}
|