李漢德

@UWJ20Zs9R7qA-6McbGBQBA

Joined on Aug 12, 2024

  • contributed by < Hande1004 > 開發環境 ~$ gcc --version gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0 $ lscpu 架構: x86_64 CPU 作業模式: 32-bit, 64-bit Address sizes: 48 bits physical, 48 bits virtual
     Like  Bookmark
  • contributed by < Hande1004 > 第一周測驗 1 在這題當中,主要要達成的是完成 list_insert_before() 這個函式,這是能夠把所要插入的 item 插入佇列當中的函式。 以下圖片為list_insert_before()詳細功能介紹: image { list_item_t **p; for (p = AAAA; *p != BBBB; p = CCCC)
     Like  Bookmark
  •  Like  Bookmark
  • Quiz1 problem C c code for function fabsf static inline float fabsf(float x) { uint32_t i = *(uint32_t *)&x; // Read the bits of the float into an integer i &= 0x7FFFFFFF; // Clear the sign bit to get the absolute value x = *(float *)&i; // Write the modified bits back into the float return x; } :::danger Don't paste code snip without comprehensive discussions.
     Like 1 Bookmark