S SmartDocs
シリーズ: C Programming Language c 14 行 · 更新日 2026-02-03

solution_1_1_hello_world.c

C Programming Language/solutions/beginner/week1/solution_1_1_hello_world.c

/**
 * Solution 1.1: Personal Hello World
 * Week 1 - Introduction to C Programming
 * 
 * Description: Modify the hello world program to print personal information
 */

#include <stdio.h>

int main() {
    printf("Hello, my name is [Student Name]!\n");
    printf("I am learning C programming.\n");
    return 0;
}

関連記事

C Programming Language c 更新日 2026-02-03

bitwise_operations_advanced.c

bitwise_operations_advanced.c — c source code from the C Programming Language learning materials (C Programming Language/additional/advanced_topics/bitwise_operations_advanced.c).

記事を読む →
C Programming Language c 更新日 2026-02-03

huffman_coding_complete.c

huffman_coding_complete.c — c source code from the C Programming Language learning materials (C Programming Language/additional/advanced_topics/huffman_coding_complete.c).

記事を読む →
C Programming Language c 更新日 2026-02-03

recursion_advanced.c

recursion_advanced.c — c source code from the C Programming Language learning materials (C Programming Language/additional/algorithms/recursion_advanced.c).

記事を読む →
C Programming Language c 更新日 2026-02-03

sorting_algorithms_complete.c

sorting_algorithms_complete.c — c source code from the C Programming Language learning materials (C Programming Language/additional/algorithms/sorting_algorithms_complete.c).

記事を読む →
C Programming Language c 更新日 2026-02-03

binary_trees_complete.c

binary_trees_complete.c — c source code from the C Programming Language learning materials (C Programming Language/additional/data_structures/binary_trees_complete.c).

記事を読む →
C Programming Language c 更新日 2026-02-03

linked_lists_complete.c

linked_lists_complete.c — c source code from the C Programming Language learning materials (C Programming Language/additional/data_structures/linked_lists_complete.c).

記事を読む →