Programming For Problem Solving Notes Pdf -
Machine (1GL) → Assembly (2GL) → High-level (3GL: C, Python) → 4GL, 5GL.
Source code (.c) → Preprocessor → Compiler → Object code → Linker → Executable (.exe)
switch(expression) case 1: ... break; case 2: ... break; default: ... break; programming for problem solving notes pdf
() → ++ -- → * / % → + - → < > <= >= → == != → && → || → = 5. Conditional Statements if-else:
break (exit loop/switch), continue (skip iteration), goto (jump to label – avoid when possible). 7. Arrays One-dimensional: Machine (1GL) → Assembly (2GL) → High-level (3GL:
for loop: for(init; condition; update) while loop: while(condition) do-while loop: do while(condition); → executes at least once.
char str[] = "Hello"; // null terminated: 'H','e','l','l','o','\0' strlen() , strcpy() , strcat() , strcmp() , strchr() 11. Structures & Unions Structure: groups different data types. break; default:
| Type | Size (approx) | Format Specifier | |------|--------------|------------------| | int | 2/4 bytes | %d | | float| 4 bytes | %f | | char | 1 byte | %c | | double| 8 bytes | %lf |
if (condition) // code; else if (cond2) // code; else // code;
// variable declarations // statements return 0;
int arr[5] = 1,2,3,4,5; arr[0] = 10; // index 0-based