#include /* program to remove a header of size 512 bytes from an image*/ /* ignore first 512 characters on stdin, then copy stdin to stdout */ main() { int c, i; for(i=0;i<512;i++) c = getchar(); while ((c = getchar()) != EOF) putchar(c); }