| Current Path : /var/www/html/mmishra/profile1/test/ |
| 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;
}