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.
13 lines
204 B
13 lines
204 B
16 years ago
|
#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;
|
||
|
}
|