PPS Short Notes Till Structures
PPS Short Notes Till Structures
1. Introduction to Programming
- Language Types:
2. Basics of C Language
3. Input/Output in C
4. Control Structures
5. Arrays
6. Strings
PPS Short Notes (Till Structures)
- Array of characters
7. Functions
8. Pointers
9. Structures
- Syntax:
struct Student {
int id;
char name[20];
float marks;
};