2020-05-06 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (15) C Standard ③ Pointer to T ※ 日本語ページはこちら Start from following C language standard. – A pointer type may be derived from a function type, a […]
2020-05-05 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (14) C Standard ② About Pointer Type ※ 日本語ページはこちら Following is about “pointer” in standard as I have shown previously. – A pointer type […]
2020-05-04 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (13) Pointer in C Standard ① ※ 日本語ページはこちら In previous article, I showed below by reading standard of C language. – A pointer type may […]
2020-05-03 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (12) Incomplete Type: Union with Uncertain Enumerator List ※ 日本語ページはこちら A type specifier of the form enum identifier without an enumerator list shall only appear after t […]
2020-05-02 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (11) You Can Define Same Tag Name at Most Once ※ 日本語ページはこちら Where two declarations that use the same tag declare the same type, they shall both use the same […]
2020-05-01 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (10) Incomplete Type: Structures / Unions ※ 日本語ページはこちら Hi, this is Gocha. As I explained, a structure or union type of unknown content s an incomplete t […]
2020-04-30 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (9) Incomplete Type: Arrays with Unknown Number of Elements or Sizes ※ 日本語ページはこちら I will explain about an array type of unknown number of elements / unknown size is an incomplete […]
2020-04-29 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (8) Incomplete Type: About Void ※ 日本語ページはこちら About Incomplete Type. Incomplete type is described in “6.2.5 Types”, so I will expla […]
2020-04-28 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (7) About Object Type ※ 日本語ページはこちら I will explain about object type. Below is how spec says. If you go index, object is described in […]
2020-04-27 / Last updated : 2024-03-08 gocha C Programming [English] 【C】Pointer (6) About Value ※ 日本語ページはこちら To understand pointer, I think value in C should be understood precisely. Here is what standard s […]