Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/profile1/test/
Upload File :
Current File : /var/www/html/mmishra/profile1/test/test.c

int double(int n)
    { /* int arg, int return */
       return n*2;
    }
    char hello(int n)
    { /* int arg, char return */
       printf("hello %i\n", n);
    }
    int five()
    { /* no args, int return */
       return 5;
    }
    int        triple(int n, int other, char nonsense)
    { /* int arg, int return */
       return n*3;
    }