gpt4 book ai didi

c - 如何丑化或缩小 C 代码

转载 作者:太空狗 更新时间:2023-10-29 17:01:26 25 4
gpt4 key购买 nike

<分区>

使用 gcc 我可以删除注释和不需要的空行,但我也想减小文件的大小,gcc 或任何其他工具中是否有任何选项可以这样做

目前我是这样的

gcc -fpreprocessed -dD -E  -P source_code.c > source_code_comments_removed.c 

这是假设这是我的 source_code.c 的场景

#include <stdio.h>
main()
{
// declar variable i
int i=0;

/* multiline comment
for loop
demo stuff
*/
for(i=1; i<=5; i++)
{
// just print something
printf("Hello %d \n",i);
}

}

我想这样缩小,去掉注释和空行

#include <stdio.h>
main(){int i=0;for(i=1; i<=5; i++){printf("Hello %d \n",i);}}

注意:我在 Linux 上,请不要建议任何基于 Windows 的解决方案

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com