source: experiments/DRMAA_tests/DRMAA_args/args_helper.c @ 16

Revision 16, 154 bytes checked in by mmatloka, 14 years ago (diff)

add experiments

Line 
1#include <stdlib.h>
2#include <stdio.h>
3
4int main(int argc,char *argv[])
5{
6        int i;
7        for (i = 1; i < argc;i++)
8                printf("%d: %s\n",i,argv[i]);
9        return 0;
10}
Note: See TracBrowser for help on using the repository browser.