User:Inge Hoonte/arduino2

From XPUB & Lens-Based wiki
< User:Inge Hoonte
Revision as of 20:16, 8 November 2010 by Inge Hoonte (talk | contribs) (Created page with "#include "stdio.h" char pat[]="wow this is hard "; int i = 0; int j = 0; int main () { while (j < 13) { while (i < 16) { printf("%c %c\n", pat[i], pat[(i+j)%16]);...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  1. include "stdio.h"

char pat[]="wow this is hard "; int i = 0; int j = 0;

int main () { while (j < 13) { while (i < 16) { printf("%c %c\n", pat[i], pat[(i+j)%16]); i = i+1; } i = 0; j = j+1; } }