Please enable JavaScript.
Coggle requires JavaScript to display documents.
C (Programming Language)
[wiki] [cppreference] [백준]
C is a general…
C (Programming Language)
[wiki] [cppreference] [백준]
- C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, with a static type system. By design, C provides constructs that map efficiently to typical machine instructions.
C Standard Library
[wiki]
- The C standard library or libc is the standard library for the C programming language, as specified in the ANSI C standard. It was developed at the same time as the C library POSIX specification, which is a superset of it. Since ANSI C was adopted by the International Organization for Standardization, the C standard library is also called the ISO C library.
-
Data Types
[wiki]
- In computer science and computer programming, a data type or simply type is an attribute of data which tells the compiler or interpreter how the programmer intends to use the data.
Pointer
[wiki] [블로그-Pointer 사용이유]
- In computer science, a pointer is an object in many programming languages that stores a memory address. This can be that of another value located in computer memory, or in some cases, that of memory-mapped computer hardware.
-
-
Const
[wiki)]
- In the C, C++, D, JavaScript and Julia programming languages, const is a type qualifier: a keyword applied to a data type that indicates that the data is read only.
Entry Point
[wiki]
- In computer programming, an entry point is where the first instructions of a program are executed, and where the program has access to command line arguments.
Programming Languages
C and C++
[wiki]
- int main(int argc, char **argv);
- int main(int argc, char *argv[]);
- int main(int argc, char argv, char env);