Skip to content

Instantly share code, notes, and snippets.

@BaSmi
BaSmi / for.c
Last active January 4, 2016 00:08
For loop ends one step later than expected
#include <cs50.h>
#include <stdio.h>
int main (void)
{
bool parm = false;
int i = 0;
for (i = 0; i < 7 && !parm; i++)
{