mirror of
https://github.com/deadw00d/AROS.git
synced 2025-11-23 12:17:41 +00:00
23 lines
344 B
C
23 lines
344 B
C
/*
|
|
Copyright (C) 1995-2014, The AROS Development Team. All rights reserved.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int main (int argc, char ** argv)
|
|
{
|
|
char * str;
|
|
int t;
|
|
|
|
str = "Hello world.\n";
|
|
|
|
printf ("%s", str);
|
|
|
|
printf ("argv=%p\n", argv);
|
|
|
|
for (t=0; t<argc; t++)
|
|
printf ("Arg %d: %s\n", t, argv[t]);
|
|
|
|
return 0;
|
|
}
|