View Single Post
Old 04-21-2003, 07:51 PM   #7 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
a console program that doesn't do any io is not much of a console program, i would say.

Code:
#include <stdio.h>

int main(int argc, char *argv[])
{
  printf("hello world\n");
  return 0;
}
joe_bruin is offline   Reply With Quote