复制到公众号的代码出现缩进异常、及缺少空格的问题
main-studio opened this issue · 6 comments
main-studio commented
YangFong commented
麻烦提供一下出现异常的文本内容,我这边未能复现成功。
main-studio commented
【实例】
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
void set_seed(void);
char generate_random_character(void);
void generate_random_string(char* receive_string,unsigned int string_length);
int main(void)
{
unsigned int password_length = 4;
char password_buffer[password_length + 1]; // +1 用来存储字符串结尾的转译字符 '\0'
set_seed(); // 设置 rand() 函数的种子
generate_random_string(password_buffer,password_length); // 生成随机字符串
printf("%s",password_buffer);
return 0;
}
YangFong commented
复现成功,但是还没法给出解释,需要等待排查。
main-studio commented
好的,麻烦你啦😄
yanglbme commented
@main-studio 应该修复了,可以再试试看
yanglbme commented
有问题再反馈