summaryrefslogtreecommitdiff
path: root/02-10.md
diff options
context:
space:
mode:
Diffstat (limited to '02-10.md')
-rw-r--r--02-10.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/02-10.md b/02-10.md
index 9efee8f..d19d967 100644
--- a/02-10.md
+++ b/02-10.md
@@ -89,3 +89,16 @@ fpurge
fflush
fseek
```
+
+---
+
+# Traversing Loops
+
+- Arrays -> `for`...
+- Strings -> `while(*p != '\0')`
+- Lists -> `while(p != NULL)`
+- FILES -> `while(fscanf == x)`
+
+---
+
+[-> Notes 02/12](02-12.md)