Toolchain trong Embeded Linux
Khái niệm toolchain Toolchain là tập hợp của các tool dùng để biên dịch source code thành các file executable có thể chạy được trên […]
|
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <iostream> int main() { int i = 0; for (float x = 100000001.0f; x <= 100000010.0f; x += 1.0f) { i++; std::cout << i << std::endl; } return 0; } |
Copyright © 2026 CppDeveloper by Phạm Minh Tuấn (SHUN)