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