Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Tests/Assembler/main.c
3148 views
1
#include <stdio.h>
2
3
#ifdef __CLASSIC_C__
4
int main()
5
{
6
int argc;
7
char* argv[];
8
#else
9
int main(int argc, char* argv[])
10
{
11
#endif
12
printf("hello assembler world, %d arguments given\n", argc);
13
return 0;
14
}
15
16