python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why is a statically-linked "hello world" program so big (over 650 KB)?
Consider the following program:
#include <stdio.h>
int main(void)
{
printf("hello world\n");
return 0;
}
If I build it with GCC, optimizing for size, and with static linking, and ...
ein supports Moderator Strike
Votes: 0
Answers: 3