logoISU  

CS256 - Principles of Structured Design

Fall 2021

Displaying ./code/sternflCode/loop2.c

#include<stdio.h>

int main() {
  int x=0;
  while(x<10) {
    printf("%d\n", x);
    x = x+5;
  }
}