diff --git "a/education/english/ENGL2010/\"What Should Colleges Teach?\" - Fish.md" "b/education/english/ENGL2010/\"What Should Colleges Teach?\" - Fish.md" new file mode 100644 index 0000000..87039e7 --- /dev/null +++ "b/education/english/ENGL2010/\"What Should Colleges Teach?\" - Fish.md" @@ -0,0 +1,5 @@ +- Writing is distinct from grammar and rhetoric, and most writing classes don't teach writing, they instead focus on grammar and rhetoric. +- Core curriculums ensure essentials, but limit depth and advancement of thinking +- Drilling students on grammar does not improve writing ability, students should instead be taught how to use grammar effectively + +- I thought the writing was meandering, rambly, and overly abstract. They never provide a clear definition of what good writing entails \ No newline at end of file diff --git a/education/software development/ECE1400/C.md b/education/software development/ECE1400/C.md index 7df84ae..908f994 100644 --- a/education/software development/ECE1400/C.md +++ b/education/software development/ECE1400/C.md @@ -20,8 +20,13 @@ A newline can be inserted using `\n`. ## Integers An integer is a way to store a whole number. In C, integers are signed by default. + +Values of an integer type are whole numbers. + +Integers are divided into two categories, signed, and unsigned. ## Floats A float is a decimal value. Slower arithmetic and inexact values are both drawbacks of using floats. + ## Variables A variable must be declared before it is assigned.