CS256
Home
Course Info
Contact
Course materials
Lessons
Syllabus
In Class Code
Course Policy
Assignments
Homework
Reading
Resources
Links
CS256 - Principles of Structured Design
Fall 2021
Displaying ./code/sternflCode/loop1.c
#include<stdio.h> int main() { for(int x=0; x<10; x++) { printf("%d\n", x); x = x+4; } }