You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdio.h>
|
|
|
|
#ifdef __CLASSIC_C__
|
|
int main()
|
|
{
|
|
int argc;
|
|
char* argv[];
|
|
#else
|
|
int main(int argc, char* argv[])
|
|
{
|
|
#endif
|
|
printf("hello assembler world, %d arguments given\n", argc);
|
|
return 0;
|
|
}
|