https://github.com/znsoooo/helloworld
Minimalist build for a program
https://github.com/znsoooo/helloworld
Last synced: 4 months ago
JSON representation
Minimalist build for a program
- Host: GitHub
- URL: https://github.com/znsoooo/helloworld
- Owner: znsoooo
- Created: 2022-06-11T10:55:43.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-06-11T11:26:10.000Z (about 4 years ago)
- Last Synced: 2025-10-19T07:30:18.789Z (8 months ago)
- Language: Batchfile
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HelloWorld
Minimalist build for a `HelloWorld` program.
## Source code
```c
#include
int main() {
printf("Hello world!\n");
getchar();
}
```
## Result
| Platform | strip | upx | Size (B) |
| :------: | :---: | :-: | :------: |
| x64 | × | × | 54,198 |
| x64 | × | √ | 40,374 |
| x64 | √ | × | 15,360 |
| x64 | √ | √ | 8,192 |
| x32 | × | × | 44,134 |
| x32 | × | √ | 32,358 |
| x32 | √ | × | 11,264 |
| x32 | √ | √ | 6,144 |