1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00
cdt/debug/org.eclipse.cdt.debug.application.tests/projects/hello/hello.c

14 lines
263 B
C
Raw Normal View History

#include <stdio.h>
#include "somehdr.h"
int main(int argc, char **argv) {
int k = SOME_VALUE; /* comment */
int j = x(k);
int i;
for (i = 0; i < argc; ++i) {
printf("argv %d is %s\n", i, argv[i]);
}
printf ("hello world %d\n", j);
return 0;
}