author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
1 /* Portions copyright (c) 2009 Nokia Corporation. All rights reserved.*/
2 /* Description:
3 * This is a test application used by g_spawn APIs. This application
4 * is spawned by them.
5 */
7 #include <stdio.h>
9 int main(int argc,char *argv[])
10 {
11 int i;
12 FILE *fp;
14 fp = fopen("c:\\Helloworld.txt", "w");
16 if(!fp)
17 {
18 printf("File creation failed\n");
19 return 0;
20 }
22 fprintf(fp,"argc = %d\n", argc );
24 for(i=0;i<argc;i++)
25 {
26 fprintf(fp,"argv[%d] = %s\n",i,argv[i]);
27 }
29 fclose(fp);
30 return 0;
31 }