C Code Examples
Observable
- Passing arrays to functions
- String representation
Interactive
- What happens when you change index variable in a for loop?
Explorable Explainations
- Explore how output changes when you change the initialization statement, condition statement, increment statment in a for loop.
- What happens when you change index variable in a for loop?
Python Explorables
- For loop using
range
with 2 arguments.
- For loop using
range
with 3 arguments.
- For loop using a
list
created with range
with 3 arguments.
- String indexing.
- String slicing using
begin:end
, just :end
and begin:
.
- Pattern Printing.
C Code to Assembly
- Mapping between C code and assembly.