--- id: c-intro title: "C Introduction" category: "Programming_Language" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["what is c", "C vs C++", "C μ†Œκ°œ"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.87 created_at: 2026-07-04 updated_at: 2026-07-04 review_reason: "" merge_history: [] tags: ["c", "programming-language", "w3schools", "intro"] raw_sources: ["https://www.w3schools.com/c/c_intro.php"] applied_in: [] github_commit: "" --- # [[C Intro]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The source frames C's core value proposition as a LEARNING INVESTMENT, not just a language choice β€” "if you know C, you will have no problem learning other popular programming languages such as Java, Python, C++, C#" β€” positioning C's tight syntax and manual memory model as the shared ancestor whose concepts transfer forward into most mainstream languages. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **Origin** β€” created by Dennis Ritchie at Bell Labs in 1972; closely tied to UNIX since much of UNIX itself was written in C. [S1] - **Primary domains** β€” operating systems, embedded devices, performance-critical software (databases, system tools), game engines/graphics, and core libraries underlying other languages. [S1] - **Multiple language standards** β€” C90, C99, C11, C17, and newer; the tutorial focuses on modern widely-supported C and flags standard-specific differences when relevant. [S1] - **C vs C++** β€” C++ is an extension of C; C is primarily procedural (function-based), while C++ adds classes/objects for object-oriented programming β€” but C can still organize data via structs and scale to large programs without C++'s added features. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) - Minimal working example: `#include int main() { char name[] = "John"; printf("Hello %s", name); return 0; }` producing `Hello John`. [S1] ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) - **C도 λŒ€κ·œλͺ¨ ν”„λ‘œκ·Έλž¨μ΄ κ°€λŠ₯ν•˜λ‹€λŠ” 점**: C++이 ν΄λž˜μŠ€λΌλŠ” μΆ”κ°€ κΈ°λŠ₯을 얹은 것뿐이며, Cλ§ŒμœΌλ‘œλ„ ꡬ쑰체λ₯Ό μ΄μš©ν•΄ 데이터λ₯Ό μ‘°μ§ν•˜κ³  큰 ν”„λ‘œκ·Έλž¨μ„ λ§Œλ“€ 수 μžˆλ‹€λŠ” 점이 λͺ…μ‹œμ μœΌλ‘œ 강쑰됨(Cκ°€ λ‹¨μˆœνžˆ "μž‘μ€ ν”„λ‘œκ·Έλž¨μš©"μ΄λΌλŠ” μ˜€ν•΄λ₯Ό ꡐ정). [S1] ## πŸ› οΈ 적용 사둀 (Applied in summary) ν˜„μž¬ 발견된 μ‹€μ œ 적용 사둀가 μ—†μŠ΅λ‹ˆλ‹€ β€” Windows/Linux/macOS의 일뢀, μžλ™μ°¨Β·TV λ“± μž„λ² λ””λ“œ κΈ°κΈ°, κ²Œμž„ μ—”μ§„ 등이 μ›λ¬Έμ—μ„œ μ–ΈκΈ‰λœ C의 λŒ€ν‘œμ  μ‹€μ „ ν™œμš© λΆ„μ•Όλ‹€. [S1] ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Minimal C program printing a formatted greeting: ```c #include int main() { char name[] = "John"; printf("Hello %s", name); return 0; } ``` ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.87 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[C Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[C Get Started]], [[C Syntax]] - **μ°Έμ‘° λ§₯락:** C νŠœν† λ¦¬μ–Ό 첫 챕터 β€” 개발 ν™˜κ²½ μ„€μ •(Get Started) μ±•ν„°λ‘œ 이어짐. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” C Introduction β€” https://www.w3schools.com/c/c_intro.php ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-07-04: Initial draft synthesized from the W3Schools "C Introduction" page (Astra wiki-curation, P-Reinforce v3.1 format).