coding question

Timour Ezeev timour at pivotaldynamics.com
Mon Apr 11 06:14:24 PDT 2005


On Mon, 11 Apr 2005, Terry Tree wrote:

Terry Tree пиÑ^HеÑ^B:
Can anyone tell me whats wrong here, I just can't get this piece of
code to compile.  After looking over it several times I can't figure
it out.
#include <stdio.h>

int
main(int argc, char **argv[])
{
  BTW, you also have incorrect main signature here.  You either use

  int main(int argc, char **argv)

  or

  int main(int argc, char *argv[])

  Hope this helps.



More information about the Users mailing list