C_Programming_Notes
C_Programming_Notes
1. Introduction to C Programming
- Data types and variables: C supports several data types like int, float, char, etc.
2. Control Structures
3. Functions
- 1D and 2D arrays: Arrays are used to store multiple elements of the same type.
- String handling functions: Functions like strcpy(), strcat(), etc. to manipulate strings.
5. Pointers
- Introduction to pointers: Pointers hold the address of another variable.
- Using structures and unions: Structures store multiple members, while unions store one member
at a time.
7. File Handling
- Reading from and writing to files: fopen(), fclose(), fscanf(), fprintf(), etc.
8. Advanced Topics