Please enable JavaScript.
Coggle requires JavaScript to display documents.
C Programming Syntax - Coggle Diagram
C Programming Syntax
-
- Floating-point numbers: float, double
-
-
-
-
-
-
- Memory management: malloc(), free()
- Error handling: perror(), strerror()
- User-defined functions: void functionName(parameters) { ... }
- Library functions: printf(), scanf()
- Data pointers: int* pointer;
- Function pointers: void(*functionPointer)(parameters);
- Macros: #define MACRO_NAME VALUE
- Conditional compilation: #if, #else, #endif