> Would any modification of the source code be required if the
> source code meets all of the ANSI C standards?

If it's a really simple program such as "Hello world" and doesn't involve a GUI
such as MS-Windows or X-Windows, I think the same source code would work without
modification, something like

#include <stdio.h>
int main()
{
  printf ("Hello world from ANSI C!\n");
  return 0;
}

Reply via email to