Types and variables in C — what changes from Python and what doesn’t
Types and variables in C are the first real shock when you move from Python to C in IC2. In Python you wrote x = 5 and Python figured everything out. In C you have to declare the type, the size and the format specifier for every variable, and if you get any of them…
