C Language Table of Contents
Recommended Articles: 【Computer Science】 Computer Science Table of Contents, 【C++】 C++ Table of Contents
1. printf
2. Collection of C Language Coding Solutions
1. printf
⑴ %c : Ascii encoding. 7-bit character code
⑵ %d : decimal number
⑶ %o : octal number
⑷ %x : hexadecimal number
⑸ %f : float type real number
⑹ %lf : double type real number
⑺ %ld : long type integer
⑻ %#o, %#x : hex with prefix (0x) or oct with prefix (0)
⑼ d : Reserve at least 10 spaces. ____1977 etc.
⑽ 0d : Fill empty space with 0. 0000001977 etc.
⑾ .3f : Total of 10 spaces including the decimal point. 3 digits after decimal. _____2.300 etc.
⑿ %E : Scientific notation of decimal
2. Collection of C Language Coding Solutions
⑴ Implementing Matrix Multiplication
⑵ Solving CPS Festival Question #6
⑶ Shortest Path Algorithm (Floyd Algorithm)
⑷ Base Conversion (Decimal → Binary)
⑸ Greatest Common Divisor and Least Common Multiple
⑻ Prime Numbers ≤ n, Sieve of Eratosthenes
⑼ Base Conversion (Decimal → Base-n)
⒅ Input and Output of Image, Sound, Video with C Language
3. Advanced Theory
Input: 2022.07.10 19:43
Edited: 2023.06.16 12:13