Revision 9f72ac36440c6c83a35958037fff258259f4ba28 authored by Brad King on 03 June 2024, 17:32:21 UTC, committed by Brad King on 03 June 2024, 17:35:26 UTC
1 parent 713bca2
Raw File
main.c
#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;
}
back to top